This commit is contained in:
Till 2023-12-14 18:09:34 +01:00
parent 6a475a7430
commit b5d14a8b64
9 changed files with 173 additions and 34 deletions

View file

@ -22,6 +22,14 @@
./system/btrbk.nix
./system/hardware-nova.nix
];
users.users.alt = {
isNormalUser = true;
description = "Alt";
extraGroups = [
"networkmanager"
];
shell = pkgs.fish;
};
};
romulus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
@ -48,6 +56,13 @@
./home
];
};
alt = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux.extend inputs.nur.overlay;
extraSpecialArgs = { inherit inputs; };
modules = [
./alt
];
};
};
};
}