add folding to flake file

This commit is contained in:
mir 2024-03-26 12:04:52 -08:00
parent 465c5e2bf5
commit 371634cdda

View File

@ -1,3 +1,4 @@
# vim: set foldlevel=0 foldmethod=marker foldenable :
{ {
description = "NixOS configuration with Home Manager"; description = "NixOS configuration with Home Manager";
inputs = { inputs = {
@ -34,7 +35,7 @@
home-manager, home-manager,
... }: { ... }: {
nixosConfigurations = { nixosConfigurations = {
kremzeek = kremzeek = # {{{
let let
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -56,8 +57,8 @@
} }
]; # end of modules ]; # end of modules
in in
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; # }}}
galvatron = galvatron = # {{{
let let
system = "aarch64-linux"; system = "aarch64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -85,8 +86,8 @@
} }
]; # end of modules ]; # end of modules
in in
nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; # }}}
breakdown = breakdown = # {{{
let let
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -107,8 +108,8 @@
} }
]; # end of modules ]; # end of modules
in in
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; # }}}
starscream = starscream = # {{{
let let
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -129,8 +130,8 @@
} }
]; # end of modules ]; # end of modules
in in
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; # }}}
knockout = knockout = # {{{
let let
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -152,7 +153,7 @@
} }
]; # end of modules ]; # end of modules
in in
inputs.nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; inputs.nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; # }}}
}; };
}; };
} }