changed everything to default.nix

This commit is contained in:
biscuit
2025-05-21 11:11:26 -05:00
parent 7e77b1acd4
commit 694042f027
16 changed files with 2 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
{pkgs, shellAliases, ...}: {
programs.zoxide.enable = true;
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
fish_vi_key_bindings
zoxide init fish | source
'';
shellAliases = shellAliases;
plugins = with pkgs.fishPlugins; [
];
};
}