This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/system/keyring.nix

14 lines
344 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.my.system.keyring;
in with lib; {
options.my = {
system.keyring.enable = mkOption {
default = true;
type = with types; bool;
};
};
# options.my.system.keyring.enable = mkEnableOption "keyring";
config = mkIf cfg.enable { services.gnome.gnome-keyring.enable = true; };
}