feat: add pass
This commit is contained in:
parent
c60fe24458
commit
0f755bc8f7
2 changed files with 13 additions and 5 deletions
|
|
@ -5,15 +5,16 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./git.nix
|
|
||||||
./tmux/tmux.nix
|
|
||||||
./zsh.nix
|
|
||||||
./starship.nix
|
|
||||||
./atuin.nix
|
./atuin.nix
|
||||||
./bat.nix
|
./bat.nix
|
||||||
./broot.nix
|
./broot.nix
|
||||||
./eza.nix
|
./eza.nix
|
||||||
|
./git.nix
|
||||||
|
./pass.nix
|
||||||
|
./starship.nix
|
||||||
|
./tmux/tmux.nix
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
|
./zsh.nix
|
||||||
];
|
];
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
|
@ -72,9 +73,10 @@
|
||||||
pandoc # Document converter transforming files between markup formats.
|
pandoc # Document converter transforming files between markup formats.
|
||||||
|
|
||||||
# Useful Utils
|
# Useful Utils
|
||||||
|
buku # Powerful command-line bookmark manager, providing a flexible and efficient way to organize, search, and access your bookmarks securely.
|
||||||
|
entr # Event notifier for automation and development, executing commands whenever files change in the specified directory.
|
||||||
git-cliff # Tool for visualizing project commit history and generating release notes.
|
git-cliff # Tool for visualizing project commit history and generating release notes.
|
||||||
grex # Tool generating regular expressions from user-provided test cases.
|
grex # Tool generating regular expressions from user-provided test cases.
|
||||||
entr
|
|
||||||
|
|
||||||
# Nix Tools
|
# Nix Tools
|
||||||
alejandra # Nix code formatter.
|
alejandra # Nix code formatter.
|
||||||
|
|
|
||||||
6
home-manager/modules/pass.nix
Normal file
6
home-manager/modules/pass.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
# ✨ Magical shell history
|
||||||
|
{...}: {
|
||||||
|
programs.password-store = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue