flake lock and fixes to toothpick

This commit is contained in:
2025-07-29 21:24:53 +02:00
parent a000bc0da3
commit 7518153d87
11 changed files with 49 additions and 50 deletions

View File

@@ -13,6 +13,7 @@ in {
config = mkIf cfg.enable {
services.dbus = {
enable = true;
implementation = "broker";
packages = with pkgs; [
gcr
];

View File

@@ -0,0 +1,18 @@
{
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.nixos.services.psd;
in {
options = {
nixos.services.psd.enable = mkEnableOption "Enables Profile Sync Daemon";
};
config = mkIf cfg.enable {
services.psd = {
enable = true;
resyncTimer = "10m";
};
};
}