1
1
Fork 0

services: add sysprof

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-03-08 12:42:13 -06:00
parent bd99a513b3
commit 892ba9b103
Signed by: Myned
GPG key ID: C7224454F7881A34
2 changed files with 18 additions and 0 deletions

View file

@ -50,6 +50,7 @@ with lib; {
#// swayidle.enable = true;
swaync.enable = true;
swayosd.enable = true;
sysprof.enable = true;
systemd-lock-handler.enable = true;
usbmuxd.enable = true;
#// xembed-sni-proxy.enable = true;

View file

@ -0,0 +1,17 @@
{
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;
};
}