diff --git a/modules/platform/mkhost.nix b/modules/platform/mkhost.nix index ffc848c..d9068da 100644 --- a/modules/platform/mkhost.nix +++ b/modules/platform/mkhost.nix @@ -1,17 +1,9 @@ { inputs, ... }: { - flake.lib.mkHost = { system, user, host, extraModules ? [] }: - let - fullnames = { - mo = "Mohamed Chrayed"; - nadine = "Nadine Peukert"; - administrator = "Administrator"; - }; - in + flake.lib.mkHost = { system, host, extraModules ? [] }: inputs.nixpkgs.lib.nixosSystem { inherit system; specialArgs = { - inherit user host system; - fullname = fullnames.${user}; + inherit host system; pkgs-unstable = import inputs.nixpkgs-unstable { inherit system; config.allowUnfree = true;