home configuration shenanigans
This commit is contained in:
parent
2309315a00
commit
6e073687a5
3 changed files with 13 additions and 3 deletions
|
|
@ -14,6 +14,9 @@
|
|||
backupFileExtension = "hmbak";
|
||||
users.osbm = import ../../home/home.nix {
|
||||
inherit config pkgs;
|
||||
username = "mac";
|
||||
homeDirectory = "/Users/mac";
|
||||
stateVersion = "24.11";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue