23 lines
499 B
Nix
Raw Normal View History

2024-12-28 22:14:11 +03:00
{ config, inputs, pkgs, ... }: {
2024-12-27 15:42:51 +03:00
imports = [ inputs.ags.homeManagerModules.default ];
2024-09-29 01:27:26 +03:00
programs.ags = {
enable = true;
2025-01-23 16:38:56 +03:00
configDir = null;
2024-09-29 01:27:26 +03:00
2024-12-27 15:42:51 +03:00
extraPackages = with inputs.ags.packages.${pkgs.system}; [
battery
mpris
hyprland
network
tray
wireplumber
2024-09-29 01:27:26 +03:00
];
};
2024-12-27 15:42:51 +03:00
wayland.windowManager.hyprland.settings.exec-once = [ "ags run" ];
2025-01-23 16:38:56 +03:00
xdg.configFile."ags".source = (pkgs.callPackage ../packages/drvs/ags.nix { colors = config.lib.stylix.colors; });
2024-09-29 01:27:26 +03:00
}