From c1e5ba22975079326ba59922736840e7b67a7b9d Mon Sep 17 00:00:00 2001 From: "root@nixos-nas" <> Date: Sun, 15 Jun 2025 09:52:43 +0000 Subject: [PATCH] neo-layout/de-layout; added netflix via chrome --- configuration.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index bfcc6a8..6e2f9fa 100644 --- a/configuration.nix +++ b/configuration.nix @@ -19,6 +19,7 @@ in { imports = [ ./hardware/hardware-configuration.nix ]; + nixpkgs.config.allowUnfree = true; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.kernelModules = [ "overlay" "vmd" ]; @@ -92,7 +93,14 @@ in # Wir pinnen den Kernel, bis ZFS 2.3.x für 6.13 bereit ist boot.kernelPackages = pkgs.linuxPackages_6_12; - environment.systemPackages = with pkgs; [ git vim zfs virt-viewer kodi ]; + ########################################################################## + ### SYSTEM PACKAGES ##################################################### + ########################################################################## + environment.systemPackages = with pkgs; [ + git vim zfs virt-viewer + kodi netflix + + ]; #### Virtualisation @@ -141,7 +149,12 @@ in ])); }; displayManager.startx.enable = false; # nutzt LightDM intern + xkb = { + layout = "de,de"; + variant = ",neo"; + }; }; + console.useXkbConfig = true; services.displayManager.autoLogin = { enable = true; user = "kodi";