more fixes

This commit is contained in:
Vivian 2023-12-19 13:52:05 +01:00
parent 998aa2fa6f
commit cad0a45511

View file

@ -53,15 +53,14 @@
'';
};
devShells.default = pkgs.mkShell {
shellHook = "${packages.default.preBuild}";
inherit (packages.default)
nativeBuildInputs buildInputs LIBCLANG_PATH;
};
}) // {
nixosModules.default = { config, lib, ... }:
nixosModules = rec {
default = { config, lib, ... }:
with lib;
let cfg = config.services.gnome-autounlock-keyring;
in {
@ -74,11 +73,13 @@
description = "Automatically unlock gnome keyring using TPM";
wantedBy = [ "gnome-session.target" ];
script = ''
${packages.default}/bin/gnome-autounlock-keyring unlock
${self.packages.default}/bin/gnome-autounlock-keyring unlock
'';
serviceConfig = { Type = "oneshot"; };
};
};
};
gnome-autounlock-keyring = default;
};
};
}