Update configuration.nix

This commit is contained in:
ska
2025-12-21 16:27:53 +00:00
parent 0dbf70531a
commit a20758d001

View File

@@ -2,7 +2,7 @@
{ {
############################################################ ############################################################
# BOOTLOADER GRUB (ROBUST FÜR USB + ECHTE HARDWARE) # BOOTLOADER GRUB (ROBUST FÜR USB / ECHTE FIRMWARE)
############################################################ ############################################################
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
@@ -15,7 +15,7 @@
}; };
############################################################ ############################################################
# INITRD HARDWARE-AGNOSTISCH (USB / SATA / NVMe) # INITRD HARDWARE-AGNOSTISCH
############################################################ ############################################################
boot.initrd.availableKernelModules = [ boot.initrd.availableKernelModules = [
@@ -31,7 +31,7 @@
boot.kernelModules = []; boot.kernelModules = [];
############################################################ ############################################################
# DATEISYSTEME LABEL-BASIERT (CLONE-SAFE) # DATEISYSTEME LABEL-BASIERT
############################################################ ############################################################
fileSystems."/" = { fileSystems."/" = {
@@ -45,18 +45,18 @@
}; };
############################################################ ############################################################
# NETZWERK / ZEIT / LOCALE # NETZWERK / LOCALE
############################################################ ############################################################
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "de_DE.UTF-8"; i18n.defaultLocale = "de_DE.UTF-8";
console.keyMap = "de"; console.keyMap = "de";
############################################################ ############################################################
# DESKTOP GNOME # DESKTOP GNOME
############################################################ ############################################################
services.xserver.enable = true; services.xserver.enable = true;
@@ -66,7 +66,7 @@
services.xserver.libinput.enable = true; services.xserver.libinput.enable = true;
############################################################ ############################################################
# AUDIO # AUDIO PIPEWIRE
############################################################ ############################################################
services.pulseaudio.enable = false; services.pulseaudio.enable = false;
@@ -131,7 +131,6 @@
#!/run/current-system/sw/bin/bash #!/run/current-system/sw/bin/bash
set -e set -e
PATH="/run/current-system/sw/bin" PATH="/run/current-system/sw/bin"
DIR="/var/lib/nixos-config" DIR="/var/lib/nixos-config"
REPO="https://git.skarockoi.de/ska/nixos-production.git" REPO="https://git.skarockoi.de/ska/nixos-production.git"