lets do this then
This commit is contained in:
parent
fb44140e47
commit
006daba313
4 changed files with 27 additions and 1 deletions
12
home/fish.nix
Normal file
12
home/fish.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
programs.fish = {
|
||||||
|
enable = true;
|
||||||
|
shellAliases = {
|
||||||
|
c = "code .";
|
||||||
|
l = "ls -lah";
|
||||||
|
free = "free -h";
|
||||||
|
df = "df -h";
|
||||||
|
du = "du -h";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -6,8 +6,10 @@
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./bash.nix
|
./bash.nix
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
./tlrc.nix
|
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
./tlrc.nix
|
||||||
|
./starship.nix
|
||||||
|
./zoxide.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.username = "osbm";
|
home.username = "osbm";
|
||||||
|
|
|
||||||
6
home/starship.nix
Normal file
6
home/starship.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
programs.starship = {
|
||||||
|
enable = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
6
home/zoxide.nix
Normal file
6
home/zoxide.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
programs.zoxide = {
|
||||||
|
enable = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue