{ config, lib, pkgs, inputs, ... }: { # Setup system configuration nathan = { config = { isDesktop = true; }; }; # Configure the login shell users.users."nathan".shell = pkgs.fish; # Setup home manager home-manager.users.nathan = import ./home.nix; # Configure nix build nix.settings = { cores = 5; max-jobs = 4; }; # Set the system name networking = { hostName = "extremophile"; computerName = "extremophile"; }; }