chore: Simplify formatting

This should make it easier to introduce more nixosConfigurations in the
future.
This commit is contained in:
Donovan Glover 2024-03-08 21:25:47 -05:00
parent 546b0f720a
commit f9905b0ea0
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -21,11 +21,13 @@
};
};
outputs = { self, nixpkgs, ... } @ attrs: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [ ./. ];
outputs = { self, nixpkgs, ... } @ attrs: with nixpkgs.lib; {
nixosConfigurations = {
nixos = nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [ ./. ];
};
};
};
}