mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 17:57:47 +02: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: {
|
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 = [ ./. ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user