From b37bb85cd72dc3aca02aaa99d944f92ce75246f2 Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 17 Apr 2026 12:03:46 -0500 Subject: Formatting --- flake.nix | 43 ++++++++++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 17 deletions(-) (limited to 'flake.nix') 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 ]; + }; }; }; - }; } -- cgit v1.2.3