2022-10-13 22:13:43 -04:00
|
|
|
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Setup system configuration
|
|
|
|
nathan = { config = { isDesktop = true; }; };
|
|
|
|
# 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;
|
|
|
|
};
|
2022-10-13 22:13:43 -04:00
|
|
|
}
|