Add iso installer config

This commit is contained in:
Johannes Jöns 2023-03-14 13:51:23 +01:00
parent 9c32ed314c
commit 2821877923

View file

@ -0,0 +1,36 @@
{ pkgs, config, lib, channel, ... }:
with lib;
#with lib.internal;
{
networking.networkmanager.enable = true;
hardware.opengl.enable = true;
boot.kernelPackages = pkgs.linuxPackages_zen;
environment.systemPackages = with pkgs; [
gparted
parted
gnufdisk
partition-manager
]
hardware.enableRedistributableFirmware = true;
programs = {
dconf.enable = true;
xwayland.enable = true;
};
# System
custom.system.boot.uboot.enable = true;
custom.system.ssh.enable = true;
custom.nix.enable = true;
custom.hardware.audio.enable = true;
custom.desktop.plasma.enable = true;
# User
custom.user.jopejoe1.enable = true;
custom.user.root.enable = true;
}