nix/module/Waybar.nix

17 lines
250 B
Nix
Raw Normal View History

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