diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-09 17:54:45 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-09 17:54:45 -0500 |
commit | 4ea08b3976188eb01a74548d68b227a7794b4caa (patch) | |
tree | 505c0df98ed00ed592be15895b8ed3eb7aa9e2c3 /hosts/ades/common.nix | |
download | nixos-config-4ea08b3976188eb01a74548d68b227a7794b4caa.tar.gz nixos-config-4ea08b3976188eb01a74548d68b227a7794b4caa.zip |
Add current configuration
Diffstat (limited to 'hosts/ades/common.nix')
-rw-r--r-- | hosts/ades/common.nix | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/hosts/ades/common.nix b/hosts/ades/common.nix new file mode 100644 index 0000000..1a32da0 --- /dev/null +++ b/hosts/ades/common.nix @@ -0,0 +1,60 @@ +{ lib, pkgs, ... }: + +{ + 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"; +} |