common nixos module

This commit is contained in:
2025-11-05 16:21:50 +07:00
parent 4259d8014e
commit 13df0a8421
4 changed files with 17 additions and 0 deletions

6
modules/nixos/common.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
screen
];
}

View File

@@ -0,0 +1,7 @@
{
flake.nixosModules = {
common = {
imports = [ ./common.nix ];
};
};
}