8 lines
148 B
Nix
8 lines
148 B
Nix
{ nixosConfig, lib, ... }:
|
|
let
|
|
cfg = nixosConfig.my.desktop;
|
|
in{
|
|
config = lib.mkIf cfg.enable {
|
|
services.gnome-keyring.enable = true;
|
|
};
|
|
} |