1
1
Fork 0
nixos/options/custom/services/sysprof.nix

18 lines
290 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.services.sysprof;
in {
options.custom.services.sysprof = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
# https://gitlab.gnome.org/GNOME/sysprof
services.sysprof.enable = true;
};
}