diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-02 01:54:01 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-02 01:54:01 +0100 |
commit | 78a49ca702893ea0d9e33f0c0ec023500f96183c (patch) | |
tree | b6bbe375dc73568039aa58b4e2d1d56ba729c0c7 /host/Rory-fosscord | |
parent | Import users for bots (diff) | |
download | Rory-Open-Architecture-78a49ca702893ea0d9e33f0c0ec023500f96183c.tar.xz |
Add fosscord
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'host/Rory-fosscord')
-rw-r--r-- | host/Rory-fosscord/configuration.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/host/Rory-fosscord/configuration.nix b/host/Rory-fosscord/configuration.nix new file mode 100644 index 0000000..74defbc --- /dev/null +++ b/host/Rory-fosscord/configuration.nix @@ -0,0 +1,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 = true; + hardware.pulseaudio.enable = true; + + system.stateVersion = "22.11"; # DO NOT EDIT! +} + |