System/machines/extremophile/configuration.nix

19 lines
385 B
Nix

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