25 lines
457 B
Nix
25 lines
457 B
Nix
{
|
|
description = "ags dependancies";
|
|
|
|
inputs = {
|
|
|
|
};
|
|
|
|
outputs = { self, ... }: {
|
|
|
|
module = { config, lib, pkgs, ... }: {
|
|
|
|
options.sysconfig.opts.ags.enable = lib.options.mkOption {};
|
|
|
|
config = lib.mkIf config.sysconfig.opts.ags.enable {
|
|
services = {
|
|
upower.enable = true;
|
|
gvfs.enable = true;
|
|
power-profiles-daemon.enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
}
|