blob: 3eff333d93d00967f9c21d0df64af0887974fc26 (
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
|
{ config, pkgs, lib, botcore-v4, ... }:
{
imports =
[
../../modules/base-server.nix
# ./services.nix
botcore-v4.modules.bots
botcore-v4.modules.frontend
botcore-v4.modules.dataupdater
botcore-v4.modules.users
];
networking = {
hostName = "Rory-discordbots";
interfaces.ens18.ipv4.addresses = [ {
address = "192.168.1.50";
prefixLength = 24;
} ];
};
system.stateVersion = "22.11"; # DO NOT EDIT!
}
|