Flake lock file updates: • Updated input 'home-manager': 'github:nix-community/home-manager/c61bfe3ae692f42ce688b5865fac9e0de58e1387?narHash=sha256-iyn/WBYDc7OtjSawbegINDe/gIkok888kQxk3aVnkgg%3D' (2025-04-15) → 'github:nix-community/home-manager/dd26f75fb4ec1c731d4b1396eaf4439ce40a91c1?narHash=sha256-eqSo9ugzsqhFgaDFYUZj943nurlX4L6f%2BAW0skJ4W%2BM%3D' (2025-04-25) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/26d499fc9f1d567283d5d56fcf367edd815dba1d?narHash=sha256-FHlSkNqFmPxPJvy%2B6fNLaNeWnF1lZSgqVCl/eWaJRc4%3D' (2025-04-12) → 'github:nixos/nixpkgs/5630cf13cceac06cefe9fc607e8dfa8fb342dde3?narHash=sha256-FQoi3R0NjQeBAsEOo49b5tbDPcJSMWc3QhhaIi9eddw%3D' (2025-04-24)
Wyatt's Nix configuration
Designed and developed by Wyatt J. Miller, 2024
Licensed by the Mozilla Public License v2
What is this??
This repository is my multi-machine Nix configuration, written in a Nix flake!
How do I get this?
Make sure the following is installed:
git
(most operating systems come with git already installed)nix
(if you are on macOS or a non-NixOS system)
If you don't have git
installed and are running macOS, run the following command:
sudo xcode-select --install
If you don't have nix
installed and are running Linux, use the Determinate Nix Installer!
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
If you don't have nix
installed and are running macOS, use the Determinate Nix Installer!
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
There's a separate installer Determinate Systems releases (and feel free to try it) but that's not on the install list here.
Once you got everything required, it's clonin' time!
git clone https://scm.wyattjmiller.com/wymiller/nix-config-v2
Once that's done, head to the next section.
How do I run this?
For NixOS systems:
sudo nixos-rebuild switch --flake .#<hostname>
For macOS systems:
nix run nix-darwin --extra-experimental-features nix-command --extra-experimental-features flakes -- switch --flake .#<hostname>
or
darwin-rebuild switch --flake .#<hostname>
where <hostname>
is the particular configuration you would like to run.
Non-NixOS Linux systems should be coming soon!