add pass
Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
parent
e664930534
commit
85b7970b00
2 changed files with 23 additions and 0 deletions
|
|
@ -55,6 +55,7 @@
|
||||||
"proton"
|
"proton"
|
||||||
"earlyoom"
|
"earlyoom"
|
||||||
"dolphin"
|
"dolphin"
|
||||||
|
"pass"
|
||||||
];
|
];
|
||||||
|
|
||||||
laptop.features = [
|
laptop.features = [
|
||||||
|
|
|
||||||
22
modules/features/desktop/pass.nix
Normal file
22
modules/features/desktop/pass.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
config.dendritic.features.pass.homeModules = [
|
||||||
|
(
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.password-store = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
|
||||||
|
settings = {
|
||||||
|
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
tessen
|
||||||
|
zbar
|
||||||
|
];
|
||||||
|
}
|
||||||
|
)
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue