diff options
| author | Christian <[email protected]> | 2026-04-17 12:03:46 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-04-17 12:03:46 -0500 |
| commit | b37bb85cd72dc3aca02aaa99d944f92ce75246f2 (patch) | |
| tree | bc185b306e5af248b866240dcc4771845811b760 /flake.nix | |
| parent | 0b77660443280e0dbfccf1b55785ea6db5ac2d62 (diff) | |
Formatting
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 43 |
1 files changed, 26 insertions, 17 deletions
@@ -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 ]; + }; }; }; - }; } |
