keyring stuff

This commit is contained in:
Reid 2024-09-18 22:01:34 -07:00
parent 755b74cd97
commit 1729b6497a
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
3 changed files with 16 additions and 0 deletions

View file

@ -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;
};
};
};
}