Commit 9f83b31
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
];