summaryrefslogtreecommitdiff
path: root/home-manager/features/gui/desktops/niri/parts/wluma.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-01-12 20:33:14 -0500
committertriethyl <triethylammonium@pm.me>2026-01-12 20:33:14 -0500
commitd1421fcf87590cf022f453ea582c51c07678cd55 (patch)
treec8ed83321eed8d54188c6eb0af383f5b5e6d04a1 /home-manager/features/gui/desktops/niri/parts/wluma.nix
parent12e152e6011bad1288df5fab822fb14873c49fcc (diff)
niri: added new monitor, night mode, and made desktop fade in on startup
Diffstat (limited to 'home-manager/features/gui/desktops/niri/parts/wluma.nix')
-rw-r--r--home-manager/features/gui/desktops/niri/parts/wluma.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/home-manager/features/gui/desktops/niri/parts/wluma.nix b/home-manager/features/gui/desktops/niri/parts/wluma.nix
deleted file mode 100644
index 21b9edc..0000000
--- a/home-manager/features/gui/desktops/niri/parts/wluma.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ config, lib, ... }: let
- cfg = config.features.gui.desktops.niri.parts.wluma;
-in {
- options.features.gui.desktops.niri.parts.wluma.enable = lib.mkEnableOption "wluma";
- config = lib.mkIf cfg.enable {
- services.wluma = {
- enable = true;
- systemd.enable = true;
- };
- };
-}