NixOS and Home Manager configurations
First install just, i.e. in Fedora:
sudo dnf install justThen clone the justfile to the current working directory.
curl -o ./justfile https://raw.githubusercontent.com/mcuste/nixconf/refs/heads/main/justfileAfterward, check the home-manager profiles on flake.nix, and then setup nix
just setup-nix mcst@fedoraThen cleanup the just and justfile since we will be using nix installed just system-wide, and the
justfile will be cloned along with nixconf repo to ~/nixconf/justfile.
I manage the dotfiles (~/.config/) using stow instead of home-manager (except for bash, fish, and git).
To setup the configurations, run:
$ just stowTo set up VSCode as the external editor for Godot, you need to install godot-tools extension.
Then make sure the LSP: Server Port configuration of godot-tools is the same as
Project Settings > Editor > Network > Language Server in Godot.
Then on Project > Settings > Editor > External Editor configuration of Godot, set the
Exec Path to the path of code executable (~/.nix-profile/bin/code on nixpkgs installed VSCode).
And then also set the Exec Flags to {project} --goto {file}:{line}:{col}.