Format file and add bitwarden cli
This commit is contained in:
parent
1c0bcddb50
commit
b8647029b5
1 changed files with 60 additions and 58 deletions
118
nix/home.nix
118
nix/home.nix
|
|
@ -1,62 +1,64 @@
|
||||||
{ pkgs, neovim-flake, ... }: {
|
{ pkgs, neovim-flake, ... }:
|
||||||
programs = {
|
{
|
||||||
zsh = {
|
programs = {
|
||||||
enable = true;
|
zsh = {
|
||||||
};
|
enable = true;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "24.05";
|
stateVersion = "24.05";
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
neovim-flake.packages.${system}.neovim
|
neovim-flake.packages.${system}.neovim
|
||||||
fzf
|
fzf
|
||||||
bat
|
bat
|
||||||
git
|
git
|
||||||
yazi
|
yazi
|
||||||
tmux
|
tmux
|
||||||
eza
|
eza
|
||||||
curl
|
curl
|
||||||
wget
|
wget
|
||||||
ripgrep
|
ripgrep
|
||||||
fd
|
fd
|
||||||
jq
|
jq
|
||||||
starship
|
starship
|
||||||
fastfetch
|
fastfetch
|
||||||
clang
|
clang
|
||||||
clang-tools
|
clang-tools
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
luajit
|
luajit
|
||||||
zoxide
|
zoxide
|
||||||
rustup
|
rustup
|
||||||
zig
|
zig
|
||||||
zls
|
zls
|
||||||
nil
|
nil
|
||||||
lldb
|
lldb
|
||||||
gopls
|
gopls
|
||||||
delve
|
delve
|
||||||
golangci-lint
|
golangci-lint
|
||||||
cmake
|
cmake
|
||||||
cmake-language-server
|
cmake-language-server
|
||||||
cmake-format
|
cmake-format
|
||||||
cmake-lint
|
cmake-lint
|
||||||
python313Packages.debugpy
|
python313Packages.debugpy
|
||||||
pyright
|
pyright
|
||||||
lua-language-server
|
lua-language-server
|
||||||
gnumake
|
gnumake
|
||||||
ninja
|
ninja
|
||||||
nodejs
|
nodejs
|
||||||
];
|
bitwarden-cli
|
||||||
file = {
|
];
|
||||||
".zshrc".source = ../zsh/.zshrc;
|
file = {
|
||||||
".config/nvim".source = ../nvim;
|
".zshrc".source = ../zsh/.zshrc;
|
||||||
".config/yazi".source = ../yazi;
|
".config/nvim".source = ../nvim;
|
||||||
".config/starship.toml".source = ../starship/starship.toml;
|
".config/yazi".source = ../yazi;
|
||||||
".tmux.conf".source = ../tmux/.tmux.conf;
|
".config/starship.toml".source = ../starship/starship.toml;
|
||||||
".config/tmux".source = ../tmux;
|
".tmux.conf".source = ../tmux/.tmux.conf;
|
||||||
".config/bat".source = ../bat;
|
".config/tmux".source = ../tmux;
|
||||||
".config/ghostty".source = ../ghostty;
|
".config/bat".source = ../bat;
|
||||||
".config/confutils".source = ../confutils;
|
".config/ghostty".source = ../ghostty;
|
||||||
".config/wallpapers".source = ../wallpapers;
|
".config/confutils".source = ../confutils;
|
||||||
};
|
".config/wallpapers".source = ../wallpapers;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue