mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Setup openrgb
This commit is contained in:
parent
40e6850cb2
commit
8d84ac3cd3
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue