{ config, lib, ... }: { options.ags = { enable = lib.mkEnableOption "Enable ags"; }; config.warnings = lib.mkIf config.ags.enable ['' ags.enable has been deprecated to allow the removal of ags from flake inputs. '']; # imports = [ inputs.ags.homeManagerModules.default ]; # config = lib.mkIf config.ags.enable { # home.packages = with pkgs; [ # libnotify # Notifications through ags # ]; # programs.ags = { # enable = true; # configDir = ./config; # # extraPackages = with pkgs; [ # gtksourceview # webkitgtk # accountsservice # ]; # }; # }; }