1
1
Fork 0
nixos/options/custom/programs/ags/default.nix

20 lines
379 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.ags;
in {
options.custom.programs.ags.enable = mkOption {default = false;};
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
# https://aylur.github.io/ags-docs
# https://github.com/Aylur/ags
programs.ags = {
enable = true;
configDir = ./.;
};
};
}