From 371634cddaa6c8e18447c3352837b957b9a80ea7 Mon Sep 17 00:00:00 2001 From: mir Date: Tue, 26 Mar 2024 12:04:52 -0800 Subject: [PATCH] add folding to flake file --- flake.nix | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index c2a551d..e09e7ac 100644 --- a/flake.nix +++ b/flake.nix @@ -1,3 +1,4 @@ +# vim: set foldlevel=0 foldmethod=marker foldenable : { description = "NixOS configuration with Home Manager"; inputs = { @@ -34,7 +35,7 @@ home-manager, ... }: { nixosConfigurations = { - kremzeek = + kremzeek = # {{{ let system = "x86_64-linux"; specialArgs = { inherit inputs; }; @@ -56,8 +57,8 @@ } ]; # end of modules in - nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; - galvatron = + nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; # }}} + galvatron = # {{{ let system = "aarch64-linux"; specialArgs = { inherit inputs; }; @@ -85,8 +86,8 @@ } ]; # end of modules in - nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; - breakdown = + nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; # }}} + breakdown = # {{{ let system = "x86_64-linux"; specialArgs = { inherit inputs; }; @@ -107,8 +108,8 @@ } ]; # end of modules in - nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; - starscream = + nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; # }}} + starscream = # {{{ let system = "x86_64-linux"; specialArgs = { inherit inputs; }; @@ -129,8 +130,8 @@ } ]; # end of modules in - nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; - knockout = + nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; # }}} + knockout = # {{{ let system = "x86_64-linux"; specialArgs = { inherit inputs; }; @@ -152,7 +153,7 @@ } ]; # end of modules in - inputs.nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; + inputs.nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; # }}} }; }; }