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";
|
backupFileExtension = "hmbak";
|
||||||
users.osbm = import ../../home/home.nix {
|
users.osbm = import ../../home/home.nix {
|
||||||
inherit config pkgs;
|
inherit config pkgs;
|
||||||
|
username = "mac";
|
||||||
|
homeDirectory = "/Users/mac";
|
||||||
|
stateVersion = "24.11";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,7 @@
|
||||||
{
|
{
|
||||||
|
username,
|
||||||
|
homeDirectory,
|
||||||
|
stateVersion,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
|
|
@ -22,14 +25,14 @@
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.username = "osbm";
|
home.username = username;
|
||||||
home.homeDirectory = "/home/osbm";
|
home.homeDirectory = homeDirectory;
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.lazygit
|
pkgs.lazygit
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = config.system.stateVersion;
|
home.stateVersion = stateVersion;
|
||||||
|
|
||||||
enableGTK = config.myModules.enableKDE;
|
enableGTK = config.myModules.enableKDE;
|
||||||
enableFirefox = config.myModules.enableKDE;
|
enableFirefox = config.myModules.enableKDE;
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
backupFileExtension = "hmbak";
|
backupFileExtension = "hmbak";
|
||||||
users.osbm = import ../home/home.nix {
|
users.osbm = import ../home/home.nix {
|
||||||
inherit config pkgs;
|
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