summary refs log tree commit diff
path: root/host/Rory-postgres/configuration.nix
blob: d224e7872e37b9c25bb9f4ddb3685b64bd1767f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, pkgs, lib, ... }:

{
  imports =
    [
      ../../modules/base-server.nix
    ];

  networking = {
    hostName = "Rory-postgres";
    interfaces.ens18.ipv4.addresses = [ { 
      address = "192.168.1.3";
      prefixLength = 24;
    } ];
  };

  environment.systemPackages = with pkgs; [
  ];

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