more fixes
This commit is contained in:
parent
998aa2fa6f
commit
cad0a45511
1 changed files with 19 additions and 18 deletions
37
flake.nix
37
flake.nix
|
@ -53,32 +53,33 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
shellHook = "${packages.default.preBuild}";
|
shellHook = "${packages.default.preBuild}";
|
||||||
inherit (packages.default)
|
inherit (packages.default)
|
||||||
nativeBuildInputs buildInputs LIBCLANG_PATH;
|
nativeBuildInputs buildInputs LIBCLANG_PATH;
|
||||||
};
|
};
|
||||||
}) // {
|
}) // {
|
||||||
nixosModules.default = { config, lib, ... }:
|
nixosModules = rec {
|
||||||
with lib;
|
default = { config, lib, ... }:
|
||||||
let cfg = config.services.gnome-autounlock-keyring;
|
with lib;
|
||||||
in {
|
let cfg = config.services.gnome-autounlock-keyring;
|
||||||
options.services.gnome-autounlock-keyring = {
|
in {
|
||||||
enable = mkEnableOption "gnome-autounlock.keyring";
|
options.services.gnome-autounlock-keyring = {
|
||||||
};
|
enable = mkEnableOption "gnome-autounlock.keyring";
|
||||||
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
systemd.user.services.gnome-autounlock-keyring = {
|
systemd.user.services.gnome-autounlock-keyring = {
|
||||||
description = "Automatically unlock gnome keyring using TPM";
|
description = "Automatically unlock gnome keyring using TPM";
|
||||||
wantedBy = [ "gnome-session.target" ];
|
wantedBy = [ "gnome-session.target" ];
|
||||||
script = ''
|
script = ''
|
||||||
${packages.default}/bin/gnome-autounlock-keyring unlock
|
${self.packages.default}/bin/gnome-autounlock-keyring unlock
|
||||||
'';
|
'';
|
||||||
serviceConfig = { Type = "oneshot"; };
|
serviceConfig = { Type = "oneshot"; };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
gnome-autounlock-keyring = default;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue