nixos/modules/desktop/bspwm/polybar/default.nix

25 lines
490 B
Nix
Raw Normal View History

2023-07-12 16:42:51 +04:00
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.bspwm.polybar;
in
{
options.modules.desktop.bspwm.polybar = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
polybar
];
home-manager.users.sako = { pkgs, ...}: {
xdg.configFile = {
polybar = {
2023-07-12 16:44:24 +04:00
source = ../../../../config/polybar;
2023-07-12 16:42:51 +04:00
recursive = true;
};
};
};
};
}