mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
24 lines
432 B
Nix
24 lines
432 B
Nix
{
|
|
inputs',
|
|
config',
|
|
secret,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs'.home-manager.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 = "21.05";
|
|
};
|
|
}
|