summaryrefslogtreecommitdiff
path: root/features/user/gui/desktops/niri/parts/wl-kbptr.nix
blob: 6f6ed569ce961fc46ed6398f3477b3e9db30181a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 = ''
        
      '';
    };
  };
}