add hm module

This commit is contained in:
2026-03-06 19:29:17 -06:00
parent 93c1b00adc
commit b506d77dec
7 changed files with 149 additions and 83 deletions

19
nix/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
'';
};
};
}