aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/wofi/default.nix
blob: 36f5916bee81295a4f9b557db4b563cf9527f9f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
    };
  };
}