summaryrefslogtreecommitdiff
path: root/features/user/gui/desktops/niri/parts/wl-kbptr.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
commit31c316d19cd974bb81a5d6de62142ff24db1c78e (patch)
treecb941422c76cb8953830a8d58c8e14dca1a10319 /features/user/gui/desktops/niri/parts/wl-kbptr.nix
parent1c21018347aa277caba74e554cb8d1b1e7fc6bed (diff)
reorganized directory structure
Diffstat (limited to 'features/user/gui/desktops/niri/parts/wl-kbptr.nix')
-rw-r--r--features/user/gui/desktops/niri/parts/wl-kbptr.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/features/user/gui/desktops/niri/parts/wl-kbptr.nix b/features/user/gui/desktops/niri/parts/wl-kbptr.nix
deleted file mode 100644
index 6f6ed56..0000000
--- a/features/user/gui/desktops/niri/parts/wl-kbptr.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, inputs, ... }: let
- cfg = config.features.gui.desktops.niri.parts.wl-kbptr;
-in {
- options.features.gui.desktops.niri.parts.wl-kbptr.enable = lib.mkEnableOption "wl-kbptr";
- config = lib.mkIf cfg.enable {
- home.packages = [ pkgs.wl-kbptr ];
- home.file."wl-kbptr-config" = {
- target = ".config/wl-kbptr/config";
- text = ''
-
- '';
- };
- };
-}