From b8647029b5850a46a6242fd98c5590293aa5d4e1 Mon Sep 17 00:00:00 2001 From: Martin Lasson Date: Thu, 10 Apr 2025 08:39:18 +0200 Subject: [PATCH] Format file and add bitwarden cli --- nix/home.nix | 118 ++++++++++++++++++++++++++------------------------- 1 file changed, 60 insertions(+), 58 deletions(-) diff --git a/nix/home.nix b/nix/home.nix index 19a9b23..f9bc89c 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -1,62 +1,64 @@ -{ pkgs, neovim-flake, ... }: { - programs = { - zsh = { - enable = true; - }; +{ pkgs, neovim-flake, ... }: +{ + programs = { + zsh = { + enable = true; }; + }; - home = { - stateVersion = "24.05"; - packages = with pkgs; [ - neovim-flake.packages.${system}.neovim - fzf - bat - git - yazi - tmux - eza - curl - wget - ripgrep - fd - jq - starship - fastfetch - clang - clang-tools - nixfmt-rfc-style - luajit - zoxide - rustup - zig - zls - nil - lldb - gopls - delve - golangci-lint - cmake - cmake-language-server - cmake-format - cmake-lint - python313Packages.debugpy - pyright - lua-language-server - gnumake - ninja - nodejs - ]; - file = { - ".zshrc".source = ../zsh/.zshrc; - ".config/nvim".source = ../nvim; - ".config/yazi".source = ../yazi; - ".config/starship.toml".source = ../starship/starship.toml; - ".tmux.conf".source = ../tmux/.tmux.conf; - ".config/tmux".source = ../tmux; - ".config/bat".source = ../bat; - ".config/ghostty".source = ../ghostty; - ".config/confutils".source = ../confutils; - ".config/wallpapers".source = ../wallpapers; - }; + home = { + stateVersion = "24.05"; + packages = with pkgs; [ + neovim-flake.packages.${system}.neovim + fzf + bat + git + yazi + tmux + eza + curl + wget + ripgrep + fd + jq + starship + fastfetch + clang + clang-tools + nixfmt-rfc-style + luajit + zoxide + rustup + zig + zls + nil + lldb + gopls + delve + golangci-lint + cmake + cmake-language-server + cmake-format + cmake-lint + python313Packages.debugpy + pyright + lua-language-server + gnumake + ninja + nodejs + bitwarden-cli + ]; + file = { + ".zshrc".source = ../zsh/.zshrc; + ".config/nvim".source = ../nvim; + ".config/yazi".source = ../yazi; + ".config/starship.toml".source = ../starship/starship.toml; + ".tmux.conf".source = ../tmux/.tmux.conf; + ".config/tmux".source = ../tmux; + ".config/bat".source = ../bat; + ".config/ghostty".source = ../ghostty; + ".config/confutils".source = ../confutils; + ".config/wallpapers".source = ../wallpapers; }; + }; }