diff --git a/users/configs/system/default.nix b/users/configs/system/default.nix index e5770dc..5eda3da 100644 --- a/users/configs/system/default.nix +++ b/users/configs/system/default.nix @@ -1,6 +1,7 @@ { imports = [ ./kitty + ./nb ./nvim ]; } diff --git a/users/configs/system/nb/default.nix b/users/configs/system/nb/default.nix new file mode 100644 index 0000000..c704338 --- /dev/null +++ b/users/configs/system/nb/default.nix @@ -0,0 +1,14 @@ +{pkgs, ...}: + +{ + home.packages = with pkgs; [ + ack + bat + imagemagick + nb + nmap + pandoc + ripgrep + w3m + ]; +}