aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm')
-rw-r--r--modules/hm/sils/default.nix1
-rw-r--r--modules/hm/sils/wofi/default.nix14
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix
index 5b50da3..9d1fb47 100644
--- a/modules/hm/sils/default.nix
+++ b/modules/hm/sils/default.nix
@@ -19,6 +19,7 @@
./sway.nix
./swaync
./theming.nix
+ ./wofi
./yt-dlp.nix
./zathura.nix
./zellij.nix
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;
+ };
+ };
+}