diff options
| author | triethyl <triethylammonium@pm.me> | 2026-01-12 20:33:14 -0500 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2026-01-12 20:33:14 -0500 |
| commit | d1421fcf87590cf022f453ea582c51c07678cd55 (patch) | |
| tree | c8ed83321eed8d54188c6eb0af383f5b5e6d04a1 /home-manager/features/gui/desktops/niri/parts/sunsetr.nix | |
| parent | 12e152e6011bad1288df5fab822fb14873c49fcc (diff) | |
niri: added new monitor, night mode, and made desktop fade in on startup
Diffstat (limited to 'home-manager/features/gui/desktops/niri/parts/sunsetr.nix')
| -rw-r--r-- | home-manager/features/gui/desktops/niri/parts/sunsetr.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/home-manager/features/gui/desktops/niri/parts/sunsetr.nix b/home-manager/features/gui/desktops/niri/parts/sunsetr.nix new file mode 100644 index 0000000..5873947 --- /dev/null +++ b/home-manager/features/gui/desktops/niri/parts/sunsetr.nix @@ -0,0 +1,12 @@ +{ config, pkgs, lib, ... }: let + cfg = config.features.gui.desktops.niri.parts.sunsetr; +in { + options.features.gui.desktops.niri.parts.sunsetr.enable = lib.mkEnableOption "sunsetr"; + config = lib.mkIf cfg.enable { + home.packages = [ pkgs.sunsetr ]; + # home.file."sunsetr-config" = { + # target = ".config/sunsetr/sunsetr.toml"; + # source = pkgs.writers.writeTOML {}; + # }; + }; +} |
