diff --git a/hosts/graphical-installer/default.nix b/hosts/graphical-installer/default.nix index 0de946a3..047231f3 100644 --- a/hosts/graphical-installer/default.nix +++ b/hosts/graphical-installer/default.nix @@ -1,4 +1,4 @@ -{ self, lib, config, pkgs, inputs, modulesPath, ... }: +{ lib, config, pkgs, inputs, ... }: { imports = [ @@ -8,16 +8,14 @@ isoImage = { isoBaseName = config.networking.hostName; contents = [{ - source = self; + source = inputs.self; target = "/bootstrap/"; }]; storeContents = [ - self.devShells.${config.nixpkgs.system}.default + inputs.self.devShells.${config.nixpkgs.system}.default ] ++ builtins.attrValues inputs; }; - networking.wireless.enable = lib.mkForce false; - profiles = { desktop = { enable = true; @@ -42,8 +40,6 @@ }; }; - networking.hostName = "graphical-installer"; - boot = { kernelPackages = pkgs.linuxPackages_latest; loader.systemd-boot.enable = true;