Initialize defiant

This commit is contained in:
2023-12-24 17:14:10 +01:00
committed by Felix Albrigtsen
parent c5d970ae4c
commit 07f129c423
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{ config, pkgs, ... }:
{
imports =
[
../../base.nix
../../common/metrics-exporters.nix
./hardware-configuration.nix
];
networking = {
hostName = "defiant";
defaultGateway = "192.168.10.1";
interfaces.eno1.ipv4 = {
addresses = [
{ address = "192.168.10.175"; prefixLength = 24; }
];
};
hostId = "8e84f235";
};
# sops.defaultSopsFile = ../../secrets/defiant/defiant.yaml;
environment.variables = { EDITOR = "vim"; };
environment.systemPackages = with pkgs; [
zfs
];
virtualisation.docker.enable = true;
virtualisation.oci-containers.backend = "docker";
system.stateVersion = "23.11";
}