aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/wofi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/wofi/default.nix')
-rw-r--r--modules/hm/sils/wofi/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/hm/sils/wofi/default.nix b/modules/hm/sils/wofi/default.nix
new file mode 100644
index 0000000..36f5916
--- /dev/null
+++ b/modules/hm/sils/wofi/default.nix
@@ -0,0 +1,14 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.sils.wofi;
+in {
+ options.sils.wofi.enable = lib.mkEnableOption "wofi";
+ config = lib.mkIf cfg.enable {
+ programs.wofi = {
+ enable = true;
+ };
+ };
+}