System/machines/TC-4000579/configuration.nix

33 lines
704 B
Nix
Raw Normal View History

2023-07-12 11:42:30 -04:00
{ config, lib, pkgs, inputs, ... }:
{
# Setup system configuration
nathan = {
config = {
isDesktop = true;
user = "nathan.mccarty";
};
programs = {
communications.enable = false;
2023-07-21 19:08:40 -04:00
creative.enable = false;
2023-08-29 09:47:47 -04:00
media.enable = false;
2023-07-22 03:18:45 -04:00
games.enable = false;
2023-07-12 11:42:30 -04:00
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";
# };
}