summary refs log tree commit diff
path: root/host/Rory-fosscord/configuration.nix
blob: 78756f41d47ad42db1f631ce24c86ada4174218b (plain) (blame)
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
{ config, pkgs, lib, discord-client-proxy, ... }:

{
  imports =
    [
      ../../modules/base-server.nix
      # ./services.nix
      discord-client-proxy.modules.proxy
      discord-client-proxy.modules.users
    ];

  networking = {
    hostName = "Rory-fosscord";
    networkmanager.enable = false;
    wireless.enable = false;
      
    firewall = {
      enable = false;
    };
    interfaces.ens18.ipv4.addresses = [ { 
      address = "192.168.1.100";
      prefixLength = 24;
    } ];
  };

  sound.enable = false;
  hardware.pulseaudio.enable = false;

  system.stateVersion = "22.11"; # DO NOT EDIT!
}