diff --git a/configs/nixos/graphical-installer/default.nix b/configs/nixos/graphical-installer/default.nix index da65f850..c298c50d 100644 --- a/configs/nixos/graphical-installer/default.nix +++ b/configs/nixos/graphical-installer/default.nix @@ -1,9 +1,15 @@ -{ lib, config, pkgs, foodogsquaredLib, ... }: +{ lib, config, pkgs, foodogsquaredLib, foodogsquaredModulesPath, ... }: # Since this will be exported as an installer ISO, you'll have to keep in mind # about the added imports from nixos-generators. In this case, it simply adds # the NixOS installation CD profile. { + imports = [ + "${foodogsquaredModulesPath}/profiles/installer" + + (foodogsquaredLib.mapHomeManager "nixos" { }) + ]; + config = lib.mkMerge [ { boot.kernelPackages = pkgs.linuxPackages_6_6; @@ -15,6 +21,13 @@ extraApps = [ ]; }; + # Install the web browser of course. What would be a graphical installer + # without one, yes? + programs.firefox = { + enable = true; + package = pkgs.firefox-foodogsquared-guest; + }; + # Some niceties. suites.desktop.enable = true;