mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-03 05:26:18 +01:00
24 lines
441 B
Nix
24 lines
441 B
Nix
|
{
|
||
|
inputs',
|
||
|
config',
|
||
|
secret,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
inputs'.home-manager-unstable.nixosModules.default
|
||
|
../../common/users.nix
|
||
|
];
|
||
|
|
||
|
home-manager.useGlobalPkgs = true;
|
||
|
home-manager.extraSpecialArgs = {
|
||
|
config' = config';
|
||
|
inputs' = inputs';
|
||
|
secret = secret;
|
||
|
};
|
||
|
home-manager.users.main = {
|
||
|
imports = [(inputs'.self + "/home-manager/modules/profiles/server.nix")];
|
||
|
|
||
|
home.stateVersion = "24.05";
|
||
|
};
|
||
|
}
|