16 lines
239 B
Nix
16 lines
239 B
Nix
{ lib, config, inputs, ... }:
|
|
|
|
let
|
|
cfg = config.homeModules.desktop.wayland.bar.ags;
|
|
in
|
|
|
|
{
|
|
|
|
imports = [ inputs.ags.homeManagerModules.default ];
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.ags = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|