summaryrefslogtreecommitdiff
path: root/hosts/ades/common.nix
blob: 1a32da01ea167dba43ac271df110267ab8232906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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";
}