diff --git a/system/configuration.nix b/system/configuration.nix index ddb1150..5517bcb 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -37,6 +37,9 @@ jack.enable = true; }; + # Kernel modules + boot.kernelModules = [ "i2c-dev" "i2c-piix4" ]; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -149,9 +152,16 @@ zsh auto-cpufreq git + openrgb-with-all-plugins (pkgs.writeScriptBin "sudo" ''exec doas "$@"'') ]; + # OpenRGB setup + services.hardware.openrgb = { + enable = true; + motherboard = "amd"; + }; + environment.shells = with pkgs; [ zsh ]; programs.zsh.enable = true;