{ lib, pkgs, ... }: { imports = [ ./hardware.nix ]; this.pc.enable = true; this.overlays.emacs.enable = lib.mkForce false; this.gui.enable = true; this.locales.default = "us"; time.timeZone = "America/Chicago"; this.sets = { arch.tools = true; cli.tools.full = true; net.tools.minimal = true; sound.tools = true; sys.tools = true; }; environment.systemPackages = with pkgs; [ emacs jre rxvt-unicode nethack sil-q ppsspp wesnoth minetest gzdoom teeworlds superTuxKart mindustry shattered-pixel-dungeon bzflag xonotic-glx mgba taisei unvanquished ]; programs.firefox = { enable = true; package = pkgs.firefox-esr; } // import ./firefox-prefs.nix {}; services.xserver = { enable = true; windowManager.awesome = { enable = true; }; }; services.joycond.enable = true; this.hosts = { mine = true; }; system.stateVersion = "24.11"; }