add vaniville (gatekeeper) config to flake

This commit is contained in:
2025-10-04 13:40:40 -05:00
parent 8bbcab579e
commit 3392e63320

View File

@@ -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";
};
}
];
};
};
}