more fixes 1
This commit is contained in:
parent
cad0a45511
commit
47ce78481c
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@
|
||||||
};
|
};
|
||||||
}) // {
|
}) // {
|
||||||
nixosModules = rec {
|
nixosModules = rec {
|
||||||
default = { config, lib, ... }:
|
default = { config, lib, pkgs, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.services.gnome-autounlock-keyring;
|
let cfg = config.services.gnome-autounlock-keyring;
|
||||||
in {
|
in {
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
description = "Automatically unlock gnome keyring using TPM";
|
description = "Automatically unlock gnome keyring using TPM";
|
||||||
wantedBy = [ "gnome-session.target" ];
|
wantedBy = [ "gnome-session.target" ];
|
||||||
script = ''
|
script = ''
|
||||||
${self.packages.default}/bin/gnome-autounlock-keyring unlock
|
${self.packages.${pkgs.system}.default}/bin/gnome-autounlock-keyring unlock
|
||||||
'';
|
'';
|
||||||
serviceConfig = { Type = "oneshot"; };
|
serviceConfig = { Type = "oneshot"; };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue