This commit is contained in:
2025-09-09 12:33:46 -06:00
parent 4a0efa9eb8
commit 178e595332
7 changed files with 152 additions and 33 deletions

View File

@@ -1,7 +1,18 @@
{ config, pkgs, ... }:
{
programs.direnv = {
enable = true;
};
# home.file = {
# direnvrc = {
# enable = true;
# executable = true;
# target = ".config/direnv/";
# source = "./direnvrc";
# };
# };
}

View File

@@ -2,9 +2,9 @@
{
home.packages = with pkgs; [
oh-my-fish
];
home.packages = with pkgs; [
oh-my-fish
];
programs.fish = {
enable = true;
@@ -15,7 +15,7 @@
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"ls" = "eza";
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
"z" = "zoxide";
};
};