System/machines/extremophile/configuration.nix

21 lines
457 B
Nix
Raw Normal View History

{ config, lib, pkgs, inputs, ... }:
{
# Setup system configuration
nathan = { config = { isDesktop = true; }; };
2023-03-29 21:08:55 -04:00
# Configure the login shell
users.users."nathan".shell = pkgs.fish;
# Setup home manager
home-manager.users.nathan = import ./home.nix;
2023-03-27 20:08:06 -04:00
# Configure nix build
nix.settings = {
cores = 8;
max-jobs = 2;
};
2023-03-29 21:06:19 -04:00
# Set the system name
networking = {
hostName = "extremophile";
computerName = "extremophile";
};
}