Modularize '/etc/configuration.nix'

This commit is contained in:
2025-05-30 20:28:48 +02:00
parent f948a51a63
commit 931244ee90
9 changed files with 84 additions and 109 deletions

12
modules/users.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
users.users.h = {
isNormalUser = true;
description = "h";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
# thunderbird
];
};
}