Auto-commit: 2026-01-05 18:49:47

This commit is contained in:
2026-01-05 18:49:47 +00:00
parent 9b85bd2bb0
commit 94f1b73f32

View File

@@ -0,0 +1,8 @@
{ nixosConfig, lib, ... }:
let
cfg = nixosConfig.my.desktop;
in{
config = lib.mkIf cfg.enable {
services.gnome-keyring.enable = true;
};
}