From 8d0e850ed417222b2f9d1e5ea56ecb108e7b4575 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Sat, 10 May 2025 00:03:32 +0530 Subject: [PATCH] chore: Disable a lot of unused stuff Signed-off-by: uttarayan21 --- nixos/ryu/configuration.nix | 2 +- nixos/ryu/services/default.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/ryu/configuration.nix b/nixos/ryu/configuration.nix index f7a03371..5e1b4b40 100644 --- a/nixos/ryu/configuration.nix +++ b/nixos/ryu/configuration.nix @@ -178,7 +178,7 @@ # }; hardware = { keyboard.qmk.enable = true; - openrazer.enable = true; + # openrazer.enable = true; bluetooth = { enable = true; powerOnBoot = true; diff --git a/nixos/ryu/services/default.nix b/nixos/ryu/services/default.nix index a50cc91e..e8fb7c63 100644 --- a/nixos/ryu/services/default.nix +++ b/nixos/ryu/services/default.nix @@ -1,14 +1,14 @@ {...}: { imports = [ + # ./sunshine.nix + # ./ollama.nix + # ./rsyncd.nix ./samba.nix - ./sunshine.nix - ./ollama.nix - ./rsyncd.nix ./tailscale.nix - ./zerotier.nix + # ./zerotier.nix ]; services = { - hardware.openrgb.enable = true; + # hardware.openrgb.enable = true; mullvad-vpn.enable = true; }; }