adding gaming user

This commit is contained in:
2024-11-17 13:07:29 -05:00
parent b8e46ee341
commit 043b3a2810
7 changed files with 324 additions and 4 deletions

View File

@@ -0,0 +1,35 @@
{
lib,
pkgs,
config,
...
}: {
imports = [
./programs.nix
];
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
};
};
programs = {
home-manager.enable = true;
git.enable = true;
};
home = {
username = "gaming";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
sessionVariables = {
FLAKE = "$HOME/Projects/dotfiles";
};
};
}