nix/module/Waybar.nix

17 lines
234 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
lib,
pkgs,
...
}: let
2024-11-07 12:12:53 +03:00
cfg = config.module.waybar;
2024-11-04 04:37:29 +03:00
in {
2024-11-07 12:12:53 +03:00
options.module.waybar.enable = lib.mkEnableOption "the Waybar.";
2024-11-04 04:37:29 +03:00
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
waybar
];
};
}