add folding to flake file
This commit is contained in:
parent
465c5e2bf5
commit
371634cdda
21
flake.nix
21
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; }; # }}}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user