Add pass
This commit is contained in:
parent
1db1d422c5
commit
7ca48ea2fc
|
@ -3,32 +3,33 @@ with builtins;
|
|||
name = name;
|
||||
value = import ./${name}.nix;
|
||||
}) [
|
||||
"common"
|
||||
"melee"
|
||||
"linux"
|
||||
"bat"
|
||||
"broot"
|
||||
"cargo"
|
||||
"macos"
|
||||
"iex"
|
||||
"mako"
|
||||
"common"
|
||||
"desktop"
|
||||
"ewwbar"
|
||||
"firefox"
|
||||
"fish"
|
||||
"git"
|
||||
"helix"
|
||||
"bat"
|
||||
"fish"
|
||||
"htop"
|
||||
"hyprland"
|
||||
"iex"
|
||||
"kitty"
|
||||
"linux"
|
||||
"linux-desktop"
|
||||
"macos"
|
||||
"mako"
|
||||
"melee"
|
||||
"nnn"
|
||||
"pass"
|
||||
"senpai"
|
||||
"sway"
|
||||
"sway-laptop"
|
||||
"swaylock"
|
||||
"tmux"
|
||||
"waybar"
|
||||
"wezterm"
|
||||
"zellij"
|
||||
"firefox"
|
||||
"broot"
|
||||
"nnn"
|
||||
"waybar"
|
||||
"swaylock"
|
||||
"desktop"
|
||||
"linux-desktop"
|
||||
"sway"
|
||||
"hyprland"
|
||||
"ewwbar"
|
||||
"sway-laptop"
|
||||
"tmux"
|
||||
"htop"
|
||||
"senpai"
|
||||
])
|
||||
|
|
6
modules/home-manager/pass.nix
Normal file
6
modules/home-manager/pass.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
package = pkgs.pass.withExtensions (exts: [exts.pass-otp]);
|
||||
};
|
||||
}
|
|
@ -27,6 +27,7 @@ in {
|
|||
home-manager.users.daniel = {
|
||||
imports = with outputs.homeManagerModules; [
|
||||
sway
|
||||
pass
|
||||
# sway-laptop
|
||||
# hyprland
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue