setup-env #1

Merged
noah.knegt merged 28 commits from setup-env into main 2025-02-28 21:49:32 +01:00
14 changed files with 191 additions and 21 deletions
Showing only changes of commit 6b0dd1a8ef - Show all commits

View File

@@ -4,6 +4,7 @@
imports = [ imports = [
./antidote.nix ./antidote.nix
./starship.nix ./starship.nix
./zoxide.nix
./zsh.nix ./zsh.nix
]; ];
} }

View File

@@ -0,0 +1,8 @@
{ pkgs, inputs, ... }:
{
programs.zoxide = {
enable = true;
enableZshIntegration = true;
};
}