Commit 9f83b31

HPCesia <me@hpcesia.com>
2025-07-25 10:30:00
feat(app): add some packages
1 parent 9463328
Changed files (3)
home
home/base/core/core.nix
@@ -74,5 +74,16 @@
         };
       };
     };
+
+    # Atuin replaces your existing shell history with a SQLite database,
+    # and records additional context for your commands.
+    # Additionally, it provides optional and fully encrypted
+    # synchronisation of your history between machines, via an Atuin server.
+    atuin = {
+      enable = true;
+      enableBashIntegration = true;
+      enableFishIntegration = true;
+      enableNushellIntegration = true;
+    };
   };
 }
home/base/gui/misc.nix
@@ -1,5 +1,6 @@
 {pkgs, ...}: {
   home.packages = with pkgs; [
     geogebra
+    wireshark # network analyzer
   ];
 }
home/base/tui/misc.nix
@@ -5,6 +5,11 @@
   ...
 }: {
   home.packages = with pkgs; [
+    # Database
+    pkgs-unstable.mycli
+    pkgs-unstable.pgcli
+    sqlite
+
     colmena.packages.${system}.colmena # nixos's remote deployment tool
   ];