aboutsummaryrefslogtreecommitdiff
path: root/node/carcajou.nix
blob: ae6b488dbe61100b9ee26bb6c505460fbad4f2b4 (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
# Configuration file local to this node

{ config, pkgs, ... }:

{
  networking.hostName = "carcajou"; # Define your hostname.

  networking.interfaces.eno1.useDHCP = false;
  networking.interfaces.eno1.ipv4.addresses = [
    {
      address = "192.168.1.22";
      prefixLength = 24;
    }
  ];

  nix = {
    binaryCaches = [
      "http://binarycache.home.adnab.me"
    ];
    binaryCachePublicKeys = [
      "binarycache.home.adnab.me:ErR6pMnewf9oVyZJd5uC2nI4EZF49c7Mh86eDZWYZaw="
    ];
  };
}