update flake for new layout to allow module imports per host;

This commit is contained in:
TheWanderingCrow 2024-12-25 15:47:27 -05:00
parent 637395bcc4
commit ede366094d

View file

@ -16,6 +16,19 @@
...
} @ inputs: {
nixosConfigurations = {
Parzival = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
modules = [
./hosts/Parzival
home-manager.nixosModules.home-manager
];
};
Parzival-Mobile = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;