From c48faee903e108d5bc4d9463e6a5d5b16faf89f0 Mon Sep 17 00:00:00 2001 From: Vivian Roest Date: Tue, 19 Dec 2023 12:27:50 +0100 Subject: [PATCH] add module --- flake.nix | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 7f6ee89..42b04cc 100644 --- a/flake.nix +++ b/flake.nix @@ -55,7 +55,31 @@ devShells.default = pkgs.mkShell { shellHook = "${packages.default.preBuild}"; - inherit (packages.default) nativeBuildInputs buildInputs LIBCLANG_PATH; + inherit (packages.default) + nativeBuildInputs buildInputs LIBCLANG_PATH; }; - }); + }) // { + nixosModules = rec { + default = { config, lib, pkgs, ... }: + 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 = '' + ${self.packages.${pkgs.system}.default}/bin/gnome-autounlock-keyring unlock + ''; + serviceConfig = { Type = "oneshot"; }; + }; + }; + }; + gnome-autounlock-keyring = default; + }; + }; }