diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -50,6 +50,18 @@ } ]; }; + nixosConfigurations.vps = nixpkgs.lib.nixosSystem { + system = linux-system; + specialArgs = { inherit inputs; }; + modules = [ + .hosts/vps/configuration + + home-manager.nixosModules.home-manager { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + } + ]; + }; darwinConfigurations."MacBook-Air" = nix-darwin.lib.darwinSystem { system = darwin-system; specialArgs = { inherit inputs username; }; |
