First commit

This commit is contained in:
2026-03-06 08:06:15 -06:00
commit 93c1b00adc
42 changed files with 2839 additions and 0 deletions

19
dev/shells.nix Normal file
View File

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