23 lines
498 B
Nix
23 lines
498 B
Nix
{ config, inputs, pkgs, ... }: {
|
|
imports = [ inputs.ags.homeManagerModules.default ];
|
|
|
|
programs.ags = {
|
|
enable = true;
|
|
|
|
configDir = null;
|
|
|
|
extraPackages = with inputs.ags.packages.${pkgs.system}; [
|
|
battery
|
|
mpris
|
|
hyprland
|
|
network
|
|
tray
|
|
wireplumber
|
|
];
|
|
};
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [ "ags run" ];
|
|
|
|
xdg.configFile."ags".source = (pkgs.callPackage ./packages/drvs/ags.nix { colors = config.lib.stylix.colors; });
|
|
}
|