Compare commits

...

2 Commits

Author SHA1 Message Date
a2428ed29f Organize packages and add bitwarden
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-03-01 14:03:33 +01:00
f386649cdc Add jq as a tool
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-03-01 13:58:57 +01:00
3 changed files with 15 additions and 1 deletions

View File

@@ -52,10 +52,18 @@
packages = with pkgs; [
(nerdfonts.override { fonts = [ "SourceCodePro" ]; })
# Desktop env
discord
spotify
obsidian
vlc
# Programming
# Security
openvpn
bitwarden-desktop
bitwarden-cli
# Development
gcc
rustup
];

View File

@@ -5,6 +5,7 @@
./bat.nix
./eza.nix
./fzf.nix
./jq.nix
./ripgrep.nix
./tmux.nix
];

View File

@@ -0,0 +1,5 @@
{ ... }:
{
programs.jq.enable = true;
}