ags: add another accent for chest

This commit is contained in:
2025-12-02 20:00:28 +03:00
parent ca96e595d5
commit eab14ec06b
2 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ config, inputs, pkgs, ... }: {
{ config, inputs, pkgs, username, ... }: {
imports = [ inputs.ags.homeManagerModules.default ];
programs.ags = {
@@ -22,5 +22,5 @@
wayland.windowManager.hyprland.settings.exec-once = [ "ags run" ];
xdg.configFile."ags".source = (pkgs.callPackage ./packages/drvs/ags.nix { colors = config.lib.stylix.colors; });
xdg.configFile."ags".source = (pkgs.callPackage ./packages/drvs/ags.nix { inherit username; colors = config.lib.stylix.colors; });
}