Make package options and split users into different file

This commit is contained in:
Patrick Menking 2024-09-16 09:45:29 -04:00
parent dd7683a756
commit b1a0574ed1
5 changed files with 55 additions and 13 deletions

15
modules/users/crow.nix Normal file
View file

@ -0,0 +1,15 @@
{ lib, config, pkgs, ...}: {
users.users.crow = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
home-manager.users.crow = {
home.username = "crow";
home.homeDirectory = "/home/crow";
home.stateVersion = "24.05";
programs.home-manager.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
imports = [
./crow.nix
];
}