mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
chore: Simplify formatting
This should make it easier to introduce more nixosConfigurations in the future.
This commit is contained in:
parent
546b0f720a
commit
f9905b0ea0
12
flake.nix
12
flake.nix
@ -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 = [ ./. ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user