give each user their own file

This commit is contained in:
Sky Hearn 2024-03-04 17:32:22 -08:00
parent d02f1e8b9d
commit d90654d02e
6 changed files with 37 additions and 37 deletions

View File

@ -17,7 +17,10 @@
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.jdoe = import ./home.nix;
home-manager.users.ku = import ./ku.nix;
home-manager.users.nub = import ./nub.nix;
home-manager.users.jas = import ./jas.nix;
home-manager.users.sky = import ./sky.nix;
# Optionally, use home-manager.extraSpecialArgs to pass
# arguments to home.nix

8
jas.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
}

8
ku.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
}

8
nub.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
}

9
sky.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, ... }: {
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
}

View File

@ -13,42 +13,6 @@
users.groups.wheel.members=["sky"];
home-manager.users.sky = { pkgs, ... }: {
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
};
home-manager.users.ku = { pkgs, ... }: {
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
};
home-manager.users.nub = { pkgs, ... }: {
home.packages = [ ]; # TODO: Copy ku's nvconfig
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
};
home-manager.users.jas = { pkgs, ... }: {
home.packages = [ nano ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
};
users.extraUsers.podman.extraGroups = [ "podman" ];
home-manager.users.podman = { pkgs, ... }: {
home.packages = [ ];