feat(nix): add direnv support

This commit is contained in:
stitchy 2025-02-27 02:28:02 +00:00
parent ec52de2dc6
commit 6ec283a1a7
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
2 changed files with 10 additions and 1 deletions

View file

@ -152,3 +152,6 @@ if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
fi fi
export QSYS_ROOTDIR="/home/flyingstitchman/.cache/paru/clone/quartus-free/pkg/quartus-free-quartus/opt/intelFPGA/21.1/quartus/sopc_builder/bin" export QSYS_ROOTDIR="/home/flyingstitchman/.cache/paru/clone/quartus-free/pkg/quartus-free-quartus/opt/intelFPGA/21.1/quartus/sopc_builder/bin"
# Nix Direnv Support
eval "$(direnv hook zsh)"

View file

@ -22,7 +22,13 @@ in
}; };
}; };
programs.appimage.binfmt = true; programs = {
appimage.binfmt = true;
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
security.rtkit.enable = true; security.rtkit.enable = true;
services = { services = {