lets do this then

This commit is contained in:
Osman Faruk Bayram 2025-03-13 19:04:24 +03:00
parent fb44140e47
commit 006daba313
4 changed files with 27 additions and 1 deletions

12
home/fish.nix Normal file
View file

@ -0,0 +1,12 @@
{
programs.fish = {
enable = true;
shellAliases = {
c = "code .";
l = "ls -lah";
free = "free -h";
df = "df -h";
du = "du -h";
};
};
}

View file

@ -6,8 +6,10 @@
./ssh.nix
./bash.nix
./direnv.nix
./tlrc.nix
./firefox.nix
./tlrc.nix
./starship.nix
./zoxide.nix
];
home.username = "osbm";

6
home/starship.nix Normal file
View file

@ -0,0 +1,6 @@
{
programs.starship = {
enable = true;
enableFishIntegration = true;
};
}

6
home/zoxide.nix Normal file
View file

@ -0,0 +1,6 @@
{
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
}