diff options
| author | adikro <adikro@disroot.org> | 2026-03-07 22:27:05 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-03-07 22:27:05 +0100 |
| commit | 11d05469368ecfe533c7720e7f5b624f2f8f19fc (patch) | |
| tree | c666f76157b6f9158a2faa723efbf10d1d3dab03 /hosts/desktop/configuration.nix | |
| parent | cacaadb79a73fca27bd8bbc0a33a0713d2379655 (diff) | |
...
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 ]; |
