diff options
Diffstat (limited to 'hosts/desktop/configuration.nix')
| -rw-r--r-- | hosts/desktop/configuration.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index fc1c334..69c95da 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -62,6 +62,7 @@ users.enable = true; }; srv = { + i2p.enable = true; files = { enable = true; localsend.enable = true; @@ -80,6 +81,7 @@ monero.enable = true; sops.enable = true; syncthing.enable = true; + vpn.enable = true; }; wm = { enable = true; @@ -107,13 +109,22 @@ ]; }; + services.hardware.openrgb = { + enable = true; + motherboard = "amd"; + package = pkgs.openrgb-with-all-plugins; + }; + boot = { + kernelParams = [ + "video=DP-1:2560x1440@240" + "video=DP-2:1920x1080@144" + ]; kernelModules = [ "nct6687" "binder_linux" "ashem_linux" ]; - # kernelParams = [ "video=DP-1:2560x1440@240" ]; extraModulePackages = [ config.boot.kernelPackages.nct6687d ]; |
