mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 01:56:13 +01:00
20 lines
426 B
Nix
20 lines
426 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";
|
||
|
};
|
||
|
}
|