Auto-commit: 2026-01-05 18:50:08

This commit is contained in:
2026-01-05 18:50:08 +00:00
parent 93c9ff36dc
commit cb11bba9b2

View File

@@ -1,8 +1,12 @@
{ nixosConfig, lib, ... }:
{ nixosConfig, lib, pkgs, ... }:
let
cfg = nixosConfig.my.desktop;
in{
config = lib.mkIf cfg.enable {
services.gnome-keyring.enable = true;
};
services.easyeffects = {
enable = true;
};
home.packages = [ pkgs.gcr ]; # Provides org.gnome.keyring.SystemPrompter
}