Rename nixosHostConfig to mkNixosHost

This commit is contained in:
Gene Liverman 2024-12-04 21:49:04 -05:00
parent 9715c97ac6
commit ce4262d2e2
5 changed files with 14 additions and 14 deletions

View file

@ -1,7 +1,7 @@
{ inputs, ... }: let
nixosHostConfig = import ./nixosHostConfig.nix { inherit inputs; };
mkNixosHost = import ./mkNixosHost.nix { inherit inputs; };
in {
inherit (nixosHostConfig)
nixosHostConfig
inherit (mkNixosHost)
mkNixosHost
;
}

View file

@ -1,5 +1,5 @@
{ inputs, ... }: {
nixosHostConfig = {
mkNixosHost = {
system ? "x86_64-linux",
hostname,
username ? "gene",