From 3392e63320dbb37eeb54a6769ce6219303c3c7bd Mon Sep 17 00:00:00 2001 From: blake Date: Sat, 4 Oct 2025 13:40:40 -0500 Subject: [PATCH] add vaniville (gatekeeper) config to flake --- flake.nix | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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"; + }; + } + ]; + }; + + }; }