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

31 lines
655 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-04-14 05:40:02 -07:00
{
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.
''];
2024-04-14 05:40:02 -07:00
# imports = [ inputs.ags.homeManagerModules.default ];
2024-04-14 05:40:02 -07:00
# 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
# ];
# };
# };
2024-04-14 05:40:02 -07:00
}