keyring stuff
This commit is contained in:
parent
755b74cd97
commit
1729b6497a
3 changed files with 16 additions and 0 deletions
|
@ -12,5 +12,6 @@ in {
|
|||
user.packages = with pkgs; [ seahorse ];
|
||||
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
security.pam.services.login.enableGnomeKeyring = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -27,5 +27,8 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
# unlock the keyring on login, only if its enabled ofc
|
||||
security.pam.services.sddm.enableGnomeKeyring = config.modules.desktop.gnome-keyring.enable;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -79,5 +79,17 @@ in {
|
|||
"terminal.integrated.minimumContrastRatio" = 1;
|
||||
};
|
||||
};
|
||||
|
||||
# gnome-keyring, kwallet, etc. support
|
||||
# this is the generic libsecret library, should work for every store
|
||||
hm.home.file.".vscode/argv.json" = {
|
||||
force = true;
|
||||
text = builtins.toJSON {
|
||||
password-store = "gnome-libsecret";
|
||||
# will complain if this isnt defined...
|
||||
# but theres a unique id which doesnt really work for us. we are killing it
|
||||
enable-crash-reporter = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue