diff --git a/flake.nix b/flake.nix index 3789ea6..48933e9 100644 --- a/flake.nix +++ b/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 = [