Modularizing the system

This commit is contained in:
2024-09-04 07:50:50 +02:00
parent f8c3653e49
commit fb35600660
8 changed files with 65 additions and 33 deletions
+10
View File
@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting # Disable greeting
alias cd z # Zoxide instead of cd
'';
};
}