30 lines
617 B
Nix
30 lines
617 B
Nix
|
{ config, lib, pkgs, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
# Setup system configuration
|
||
|
nathan = {
|
||
|
config = {
|
||
|
isDesktop = true;
|
||
|
user = "nathan.mccarty";
|
||
|
};
|
||
|
programs = {
|
||
|
communications.enable = false;
|
||
|
virtualization = false;
|
||
|
};
|
||
|
};
|
||
|
# Configure the login shell
|
||
|
users.users."nathan.mccarty".shell = pkgs.fish;
|
||
|
# Setup home manager
|
||
|
home-manager.users."nathan.mccarty" = import ./home.nix;
|
||
|
# Configure nix build
|
||
|
nix.settings = {
|
||
|
cores = 8;
|
||
|
max-jobs = 2;
|
||
|
};
|
||
|
# Set the system name
|
||
|
# networking = {
|
||
|
# hostName = "extremophile";
|
||
|
# computerName = "extremophile";
|
||
|
# };
|
||
|
}
|