programs: add uwsm
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
acd5cc0ee3
commit
cfcba50437
1 changed files with 17 additions and 0 deletions
17
options/custom/programs/uwsm.nix
Normal file
17
options/custom/programs/uwsm.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.custom.programs.uwsm;
|
||||||
|
in {
|
||||||
|
options.custom.programs.uwsm = {
|
||||||
|
enable = mkOption {default = false;};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
# https://github.com/Vladimir-csp/uwsm
|
||||||
|
programs.uwsm.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue