summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-04-17 12:03:46 -0500
committerChristian <[email protected]>2026-04-17 12:03:46 -0500
commitb37bb85cd72dc3aca02aaa99d944f92ce75246f2 (patch)
treebc185b306e5af248b866240dcc4771845811b760 /flake.nix
parent0b77660443280e0dbfccf1b55785ea6db5ac2d62 (diff)
Formatting
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix43
1 files changed, 26 insertions, 17 deletions
diff --git a/flake.nix b/flake.nix
index 82c32c0..c83dc9e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -21,23 +21,32 @@
};
};
- outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, nix-index-database, ... }@inputs: {
- nixosConfigurations = {
- hyper-v = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- specialArgs = { inherit inputs; };
- modules = [ ./hosts/hyper-v/configuration.nix ];
- };
- desktop = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- specialArgs = { inherit inputs; };
- modules = [ ./hosts/desktop/configuration.nix ];
- };
- laptop = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- specialArgs = { inherit inputs; };
- modules = [ ./hosts/laptop/configuration.nix ];
+ outputs =
+ {
+ self,
+ nixpkgs,
+ nixpkgs-unstable,
+ home-manager,
+ nix-index-database,
+ ...
+ }@inputs:
+ {
+ nixosConfigurations = {
+ hyper-v = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/hyper-v/configuration.nix ];
+ };
+ desktop = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/desktop/configuration.nix ];
+ };
+ laptop = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/laptop/configuration.nix ];
+ };
};
};
- };
}