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, 0 insertions, 14 deletions
diff --git a/modules/hm/sils/wofi/default.nix b/modules/hm/sils/wofi/default.nix
deleted file mode 100644
index 36f5916..0000000
--- a/modules/hm/sils/wofi/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.wofi;
-in {
- options.sils.wofi.enable = lib.mkEnableOption "wofi";
- config = lib.mkIf cfg.enable {
- programs.wofi = {
- enable = true;
- };
- };
-}