feat(flake): make flake acknowledge ahrc-pc
config
This commit is contained in:
parent
56bee28114
commit
73ce9d8f58
1 changed files with 13 additions and 0 deletions
13
flake.nix
13
flake.nix
|
@ -8,6 +8,19 @@
|
|||
};
|
||||
|
||||
outputs = inputs@{ self, nixpkgs, home-manager, ... }: {
|
||||
nixosConfigurations.ahrc-pc = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./ahrc-pc/configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.ahurac = import ./ahrc-pc/home.nix;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
nixosConfigurations.ahrc-laptop = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
|
|
Loading…
Reference in a new issue