diff options
Diffstat (limited to 'gui/niri.nix')
-rw-r--r-- | gui/niri.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gui/niri.nix b/gui/niri.nix new file mode 100644 index 0000000..114857e --- /dev/null +++ b/gui/niri.nix @@ -0,0 +1,22 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./gtk.nix + ./dunst.nix + ]; + + home.pointerCursor = { + enable = true; + package = pkgs.vanilla-dmz; + name = "Vanilla-DMZ-AA"; + size = 16; + }; + + #home.file.".config/niri/config.kdl".source = config.lib.file.mkOutOfStoreSymlink ./conf/niri.kdl; + + services.screen-locker = { + enable = true; + lockCmd = "${pkgs.swaylock}/bin/swaylock -c #000000"; + }; +} |