nix-dotfiles/hmModules/services/widgets/ags/default.nix

30 lines
655 B
Nix

{ 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
# ];
# };
# };
}