Fix up now-broken modules

This commit is contained in:
Julia Lange 2025-11-19 09:14:08 -08:00
parent bcb09055f8
commit 836da8b798
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
5 changed files with 254 additions and 247 deletions

View file

@ -1,25 +1,30 @@
{ config, inputs, pkgs, lib, ... }:
{ 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 ];
# 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
];
};
};
# 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
# ];
# };
# };
}