mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-25 12:19:12 +00:00
hosts/graphical-installer: add nixos
HM user and a web browser
This commit is contained in:
parent
a0c73c3901
commit
fb634531e4
@ -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
|
# 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
|
# about the added imports from nixos-generators. In this case, it simply adds
|
||||||
# the NixOS installation CD profile.
|
# the NixOS installation CD profile.
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
"${foodogsquaredModulesPath}/profiles/installer"
|
||||||
|
|
||||||
|
(foodogsquaredLib.mapHomeManager "nixos" { })
|
||||||
|
];
|
||||||
|
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
{
|
{
|
||||||
boot.kernelPackages = pkgs.linuxPackages_6_6;
|
boot.kernelPackages = pkgs.linuxPackages_6_6;
|
||||||
@ -15,6 +21,13 @@
|
|||||||
extraApps = [ ];
|
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.
|
# Some niceties.
|
||||||
suites.desktop.enable = true;
|
suites.desktop.enable = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user