dotfiles/nixos/systems/hela/users.nix
magic_rb 2bf58cabcf
hela: switch to stable nixpkgs
The really complex nftable rules I have seem to not work or worse, segfault with nftables 1.09 which is the version in
`nixpkgs-stable`. Therefore we need to pull in 1.10 from `nixpkgs-unstable` for now.

Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-10-02 02:36:47 +02:00

24 lines
439 B
Nix

{
inputs',
config',
secret,
...
}: {
imports = [
inputs'.home-manager-stable.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";
};
}