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: { outputs = { self, nixpkgs, ... } @ attrs: with nixpkgs.lib; {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations = {
system = "x86_64-linux"; nixos = nixosSystem {
specialArgs = attrs; system = "x86_64-linux";
modules = [ ./. ]; specialArgs = attrs;
modules = [ ./. ];
};
}; };
}; };
} }