add module

This commit is contained in:
Vivian 2023-12-19 12:27:50 +01:00
parent e6e9f6a770
commit 743e725475

View file

@ -53,9 +53,30 @@
'';
};
nixosModules.default = { config }:
with lib;
let cfg = config.services.gnome-autounlock-keyring;
in {
options.services.gnome-autounlock-keyring = {
enable = mkEnableOption "gnome-autounlock.keyring";
};
config = mkIf cfg.enable {
systemd.user.services.gnome-autounlock-keyring = {
description = "Automatically unlock gnome keyring using TPM";
wantedBy = [ "gnome-session.target" ];
script = ''
${packages.default}/bin/gnome-autounlock-keyring unlock
'';
serviceConfig = { Type = "oneshot"; };
};
};
};
devShells.default = pkgs.mkShell {
shellHook = "${packages.default.preBuild}";
inherit (packages.default) nativeBuildInputs buildInputs LIBCLANG_PATH;
inherit (packages.default)
nativeBuildInputs buildInputs LIBCLANG_PATH;
};
});
}