summaryrefslogtreecommitdiff
path: root/hm/env/waybar.nix
blob: 84ccea91a4b28ce62727cee3830fcd865433077d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }:
let
  cfg = config.szpont.hm.env.waybar;
in
{
  options.szpont.hm.env.waybar.enable = lib.mkEnableOption "enables waybar";

  config = lib.mkIf cfg.enable {
    programs.waybar = {
      enable = true;
    };
  };
}