feat: switch to automatic nixosConfiguration population

This commit is contained in:
transcaffeine 2025-04-02 20:12:28 +02:00
parent 4c89c45e3e
commit 6b8b00469e
Signed by: transcaffeine
GPG key ID: 03624C433676E465
2 changed files with 25 additions and 8 deletions

View file

@ -4,14 +4,10 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
};
outputs = inputs @ { self, nixpkgs, ... }: {
nixosConfigurations.backstage = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/backstage
];
specialArgs = { inherit inputs; };
};
outputs = inputs @ { self, nixpkgs, ... }: {
imports = [
./hosts
];
};
}