add wshowkeys module and package
This commit is contained in:
parent
2afb64528d
commit
73ff50db30
13 changed files with 82 additions and 39 deletions
|
|
@ -31,6 +31,7 @@
|
|||
openssh.enable = true;
|
||||
kanata.enable = true;
|
||||
tailscale.enable = true;
|
||||
wshowkeys.enable = true;
|
||||
};
|
||||
};
|
||||
programs.gnupg.agent = {
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@
|
|||
juicity.client.enable = true;
|
||||
owncast.enable = true;
|
||||
minio.enable = true;
|
||||
wshowkeys.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -28,5 +28,6 @@
|
|||
./minio.nix
|
||||
./supergfxd.nix
|
||||
./radicle.nix
|
||||
./wshowkeys.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
16
nixos/modules/programs/wshowkeys.nix
Normal file
16
nixos/modules/programs/wshowkeys.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.youthlic.programs.wshowkeys;
|
||||
in {
|
||||
options = {
|
||||
youthlic.programs.wshowkeys = {
|
||||
enable = lib.mkEnableOption "wshowkeys";
|
||||
};
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.wshowkeys.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue