home configuration shenanigans

This commit is contained in:
Osman Faruk Bayram 2025-09-09 14:20:23 +03:00
parent 2309315a00
commit 6e073687a5
3 changed files with 13 additions and 3 deletions

View file

@ -14,6 +14,9 @@
backupFileExtension = "hmbak";
users.osbm = import ../../home/home.nix {
inherit config pkgs;
username = "mac";
homeDirectory = "/Users/mac";
stateVersion = "24.11";
};
};

View file

@ -1,4 +1,7 @@
{
username,
homeDirectory,
stateVersion,
config,
pkgs,
...
@ -22,14 +25,14 @@
./zoxide.nix
];
home.username = "osbm";
home.homeDirectory = "/home/osbm";
home.username = username;
home.homeDirectory = homeDirectory;
home.packages = [
pkgs.lazygit
];
home.stateVersion = config.system.stateVersion;
home.stateVersion = stateVersion;
enableGTK = config.myModules.enableKDE;
enableFirefox = config.myModules.enableKDE;

View file

@ -15,6 +15,10 @@
backupFileExtension = "hmbak";
users.osbm = import ../home/home.nix {
inherit config pkgs;
# fuck you macos
username = "osbm";
homeDirectory = "/home/osbm";
inherit (config.system) stateVersion;
};
};
}