Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.79 KB

File metadata and controls

51 lines (31 loc) · 1.79 KB

@GNRSN dotfiles

Setup

See Setup

Docs

Nix

Nix is a build tool/package manager with its own language (DSL) and package repository nixpkgs. The installer created by determinate systems also allows easy uninstallation so we prefer this over the official installation script

Nixpkgs has stable releases and an unstable branch which is essentially the latest version/nightly build. However the flake lock-file pins the version of nixpkgs to a specific commit.

Nix Darwin

Acts as a glue between Nix and MacOS, allows declarative MacOS configuration inspired by NixOS. Manages itself after bootstrapping.

sudo darwin-rebuild switch --flake .#GNRSN/MacBook && brew bundle dump --file=~/dotfiles/brew.txt --force && find /run/current-system/sw/bin/ -type l -exec readlink {} \; \
  | sed -E 's|[^-]+-([^/]+)/.*|\1|g' \
  | sort -u \
  | grep -vE '^(bash-interactive-.*|darwin-help|darwin-rebuild|darwin-uninstaller|darwin-option|darwin-version|nix-info|texinfo-interactive-.*)$' \
  > packages.txt

GNU Stow

Symlink utility, I use this for configs since I want them to be editable with instant refresh.

See discussion in https://github.com/omerxx/dotfiles/issues/10

Rust

Requires to be installed for dependencies that compile from source. Rustup manages the rust entire rust toolchain, installing versioned cargo through nix seemed overkill for now. This approach requires installing the toolchain manually through: rustup default stable

JS Toolchains

Node JS is installed through Mise, which also installs corepack automatically

Corepack then manages the package-manager per JS project

For global installs, e.g. global pnpm, use corepack prepare

E.g. to install the latest verion of pnpm: corepack prepare pnpm@latest --activate

To install JS packages globally