mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:56:34 +01:00
Add iso installer config
This commit is contained in:
parent
9c32ed314c
commit
2821877923
1 changed files with 36 additions and 0 deletions
36
systems/aarch64-install-iso/graphical-arm/default.nix
Normal file
36
systems/aarch64-install-iso/graphical-arm/default.nix
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue