diff --git a/flake.nix b/flake.nix index 2985734..55677b5 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,8 @@ -# generation: 37 # flake for blakes nixos config # define new devices in outputs +# generation: 37 + + { description = "blakes nix config"; @@ -28,6 +30,23 @@ } ]; }; + nixosConfigurations.vaniville = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./hosts/vaniville/configuration.nix + home-manager.nixosModules.home-manager + { + home-manager = { + useGlobalPkgs = true; + useUserPackages = true; + users.blake = import ./users/blake/home.nix; + backupFileExtension = "backup"; + }; + } + ]; + }; + + }; }