mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 12:19:12 +00:00
hosts/graphical-installer: update config
This commit is contained in:
parent
9bb2ca951e
commit
21ce62aa00
@ -1,19 +1,35 @@
|
|||||||
{ lib, config, pkgs, foodogsquaredLib, foodogsquaredModulesPath, ... }:
|
{ lib
|
||||||
|
, config
|
||||||
|
, pkgs
|
||||||
|
, foodogsquaredLib
|
||||||
|
, foodogsquaredUtils
|
||||||
|
, 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 = [
|
imports = [
|
||||||
"${foodogsquaredModulesPath}/profiles/installer"
|
"${foodogsquaredModulesPath}/profiles/installer.nix"
|
||||||
|
|
||||||
(foodogsquaredLib.mapHomeManager "nixos" { })
|
(foodogsquaredUtils.mapHomeManagerUser "nixos" { })
|
||||||
];
|
];
|
||||||
|
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
{
|
{
|
||||||
|
# Use the systemd-boot EFI boot loader.
|
||||||
|
boot.loader.systemd-boot = {
|
||||||
|
enable = true;
|
||||||
|
netbootxyz.enable = true;
|
||||||
|
};
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.kernelPackages = pkgs.linuxPackages_6_6;
|
boot.kernelPackages = pkgs.linuxPackages_6_6;
|
||||||
|
|
||||||
|
# We'll make NetworkManager manage all of them networks.
|
||||||
|
networking.wireless.enable = false;
|
||||||
|
|
||||||
# Use my desktop environment configuration without the apps just to make the
|
# Use my desktop environment configuration without the apps just to make the
|
||||||
# closure size smaller.
|
# closure size smaller.
|
||||||
workflows.workflows.a-happy-gnome = {
|
workflows.workflows.a-happy-gnome = {
|
||||||
|
Loading…
Reference in New Issue
Block a user