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 {
|
||||
default = { config, lib, ... }:
|
||||
default = { config, lib, pkgs, ... }:
|
||||
with lib;
|
||||
let cfg = config.services.gnome-autounlock-keyring;
|
||||
in {
|
||||
|
@ -73,7 +73,7 @@
|
|||
description = "Automatically unlock gnome keyring using TPM";
|
||||
wantedBy = [ "gnome-session.target" ];
|
||||
script = ''
|
||||
${self.packages.default}/bin/gnome-autounlock-keyring unlock
|
||||
${self.packages.${pkgs.system}.default}/bin/gnome-autounlock-keyring unlock
|
||||
'';
|
||||
serviceConfig = { Type = "oneshot"; };
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue