diff --git a/modules/user/ags.nix b/modules/user/ags.nix deleted file mode 100644 index b2b28a2..0000000 --- a/modules/user/ags.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ config, inputs, pkgs, username, ... }: { - imports = [ inputs.ags.homeManagerModules.default ]; - - programs.ags = { - enable = true; - - configDir = null; - - extraPackages = with inputs.ags.packages.${pkgs.stdenv.hostPlatform.system}; [ - battery - mpris - hyprland - network - tray - wireplumber - ]; - }; - - home.packages = with pkgs; [ - pulsemixer - ]; - - wayland.windowManager.hyprland.settings.exec-once = [ "ags run" ]; - - xdg.configFile."ags".source = (pkgs.callPackage ./packages/drvs/ags.nix { inherit username; colors = config.lib.stylix.colors; }); -}