sync repo

This commit is contained in:
notkaori
2025-08-20 09:38:25 -06:00
parent 51f2ce340f
commit 1f3b39008e
17 changed files with 916 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
fish
];
programs.fish = {
enable = true;
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"nc" = "~/nixos-servers/conf-editor.sh";
"ls" = "eza";
};
};
}