formatting?
parent
608982d8f2
commit
7486f2409b
15
flake.nix
15
flake.nix
|
@ -24,9 +24,18 @@
|
|||
let
|
||||
lib = import ./lib { inherit (nixpkgs) lib; };
|
||||
|
||||
cleanHostname = config: builtins.removeAttrs config [ "hostname" ];
|
||||
toPartialNixosConfigSet = config: { name = config.hostname; value = nixpkgs.lib.nixosSystem (cleanHostname config); };
|
||||
toNixosSystemConfig = { hostname, system }: {
|
||||
cleanHostname =
|
||||
config:
|
||||
builtins.removeAttrs config [ "hostname" ];
|
||||
toPartialNixosConfigSet =
|
||||
config:
|
||||
{
|
||||
name = config.hostname;
|
||||
value = nixpkgs.lib.nixosSystem (cleanHostname config);
|
||||
};
|
||||
toNixosSystemConfig =
|
||||
{ hostname, system }:
|
||||
{
|
||||
inherit system hostname;
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
|
|
Loading…
Reference in New Issue