This repository manages system configurations for all of my macOS, nixOS and Linux machines.
This repository is a flake. All system
configurations are defined in flake.nix. Platorm specific
configurations are found defined in the flake outputs darwinConfigurations
,
nixosConfigurations
for macOS and NixOS respectively.
Nix-Darwin and NixOS configuratons share as much overlap as possible in the common module, ./modules/common.nix. Platform specific modules add onto the common module in ./modules/darwin/default.nix and ./modules/nixos/default.nix for macOS and NixOS respectively.
My home-manager configuration is entirely decoupled from NixOS and nix-darwin configurations. This means that all of its modules are found in ./modules/home-manager. These modules are imported into all other configurations in the common module similarly to this:
{ config, pkgs, ... }: {
home-manager.users.sarah = import ./home-manager/home.nix;
}
This means that home.nix is fully compatible
as a standalone configuration, managed with the home-manager
CLI. This allows
close replication of any user config for any linux system running nix. These
configurations are defined in the homeConfigurations
output.
User "profiles" are specified in ./profiles; these modules configure contextual, identity-specific settings such as TLS certificates or work vs. personal email addresses. When possible, home-manager functionality is extracted into ./profiles/home-manager, as mentioned previously.
Install a multi-user Nix install.
Follow the installation instructions, then run
sudo nixos-install --flake github:sarahhodne/nix-system#<hostname>
Clone this repository into ~/.nixpkgs
with
git clone https://github.com/sarahhodne/nix-system ~/.nixpkgs
You can bootstrap a new nix-darwin system using
nix develop -c sysdo disksetup && sysdo build --darwin [host] && ./result/activate-user && ./result/activate
or a home-manager configuration using
nix develop -c sysdo build --home-manager [host] && ./result/activate
The sysdo
utility is a Python script that wraps nix
, darwin-rebuild
,
nixos-rebuild
, and home-manager
commands to provide a consistent interface
across multiple platforms. It has some dependencies which are defined in the
devShell
flake output. Documentation for this tool is found in
sysdo.md.
This repository uses the MIT licence, see the LICENCE file for details.
The repository was originally based on kclejeune/system, which had the following copyright and permission notice:
Copyright (c) 2020 Kennan LeJeune
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.