Add pass
This commit is contained in:
parent
1db1d422c5
commit
7ca48ea2fc
|
@ -3,32 +3,33 @@ with builtins;
|
||||||
name = name;
|
name = name;
|
||||||
value = import ./${name}.nix;
|
value = import ./${name}.nix;
|
||||||
}) [
|
}) [
|
||||||
"common"
|
"bat"
|
||||||
"melee"
|
"broot"
|
||||||
"linux"
|
|
||||||
"cargo"
|
"cargo"
|
||||||
"macos"
|
"common"
|
||||||
"iex"
|
"desktop"
|
||||||
"mako"
|
"ewwbar"
|
||||||
|
"firefox"
|
||||||
|
"fish"
|
||||||
"git"
|
"git"
|
||||||
"helix"
|
"helix"
|
||||||
"bat"
|
"htop"
|
||||||
"fish"
|
"hyprland"
|
||||||
|
"iex"
|
||||||
"kitty"
|
"kitty"
|
||||||
|
"linux"
|
||||||
|
"linux-desktop"
|
||||||
|
"macos"
|
||||||
|
"mako"
|
||||||
|
"melee"
|
||||||
|
"nnn"
|
||||||
|
"pass"
|
||||||
|
"senpai"
|
||||||
|
"sway"
|
||||||
|
"sway-laptop"
|
||||||
|
"swaylock"
|
||||||
|
"tmux"
|
||||||
|
"waybar"
|
||||||
"wezterm"
|
"wezterm"
|
||||||
"zellij"
|
"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 = {
|
home-manager.users.daniel = {
|
||||||
imports = with outputs.homeManagerModules; [
|
imports = with outputs.homeManagerModules; [
|
||||||
sway
|
sway
|
||||||
|
pass
|
||||||
# sway-laptop
|
# sway-laptop
|
||||||
# hyprland
|
# hyprland
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue