nix/module/Waybar.nix
2024-11-06 01:07:30 +03:00

17 lines
250 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.module.desktop.waybar;
in {
options.module.desktop.waybar.enable = lib.mkEnableOption "the Waybar.";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
waybar
];
};
}