add bitwarden-rofi

This commit is contained in:
2024-08-22 10:08:28 -04:00
parent 384964759c
commit 6402e70d23
5 changed files with 72 additions and 56 deletions

View File

@ -1,62 +1,66 @@
{ pkgs, ... }:
{ pkgs, outputs, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs29-pgtk;
};
home.packages = with pkgs; [
cmake
shellcheck
glslang
pipenv
python312Packages.isort
python312Packages.pytest
home.packages =
with pkgs;
[
cmake
shellcheck
glslang
pipenv
python312Packages.isort
python312Packages.pytest
# rust tools
trunk
wasm-pack
cargo-tarpaulin
cargo-watch
cargo-generate
diesel-cli
cargo-audit
gitoxide
# rust tools
trunk
wasm-pack
cargo-tarpaulin
cargo-watch
cargo-generate
diesel-cli
cargo-audit
gitoxide
# nix tools
nil
nixfmt-rfc-style
nix-init
# nix tools
nil
nixfmt-rfc-style
nix-init
# markdown
nodePackages.markdownlint-cli
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
yaml-language-server
nodePackages.typescript-language-server
nodePackages.bash-language-server
pyright
cmake-language-server
multimarkdown
rustc
cargo
rust-analyzer
clang
clang-tools
wakatime
enchant
nuspell
hunspellDicts.en-us
languagetool
# doom emacs dependencies
yaml-language-server
nodePackages.typescript-language-server
nodePackages.bash-language-server
pyright
cmake-language-server
multimarkdown
rustc
cargo
rust-analyzer
clang
clang-tools
wakatime
enchant
nuspell
hunspellDicts.en-us
languagetool
# dependencies for nix-dotfiles/hydra-check-action
nodejs_20
nodePackages.prettier
treefmt
# dependencies for nix-dotfiles/hydra-check-action
nodejs_20
nodePackages.prettier
treefmt
nextcloud-client
bitwarden-cli
bitwarden-menu
wtype
];
nextcloud-client
bitwarden-cli
bitwarden-menu
wtype
]
++ [ outputs.packages.bitwarden-rofi ];
}