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