aboutsummaryrefslogtreecommitdiff
path: root/hosts/jupiter/system.nix
blob: 1c63845263371b18a22d841b80914af68773b6a3 (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
{
  inputs,
  pkgs,
  ...
}: {
  imports = [
    inputs.disko.nixosModules.disko
    ./disks.nix

    ./minecraft.nix
    ./samba.nix

    inputs.nixos-facter-modules.nixosModules.facter
    {facter.reportPath = ./facter.json;}
  ];

  time.timeZone = "America/Chicago";

  systemd.network.wait-online.enable = false; # fix for weird wifi issue

  services.pipewire.jack.enable = true;
  environment.systemPackages = with pkgs; [puredata vital helvum];

  system.stateVersion = "25.05";
}