Files
Olympus/system-config/programs/ags/default.nix
2025-08-17 14:04:02 -05:00

16 lines
373 B
Nix

{ config, lib, pkgs, ... }: {
options.sysconfig.programs.ags.enable = lib.options.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.sysconfig.programs.ags.enable {
services = {
upower.enable = true;
gvfs.enable = true;
power-profiles-daemon.enable = true;
};
};
}