Files
Aurora/nix/shells.nix
2026-03-06 19:29:17 -06:00

20 lines
342 B
Nix

{ ... }: {
perSystem = { pkgs, system, ... }: {
devShells.default = pkgs.mkShellNoCC {
nativeBuildInputs = with pkgs; [
quickshell
];
shellHook = ''
export SHELL=$(realpath `which zsh`)
exec nvim
'';
};
};
}