Implement initial containers module

This commit is contained in:
2022-03-26 14:20:30 +00:00
parent 5ef6684df4
commit 67114c1336
16 changed files with 372 additions and 73 deletions

View File

@@ -1,9 +1,8 @@
{
nixos.systems.colony = {
system = "x86_64-linux";
nixpkgs = "stable";
nixpkgs = "unstable";
home-manager = "unstable";
docCustom = false;
configuration = { lib, pkgs, modulesPath, config, ... }:
let
@@ -32,9 +31,10 @@
};
};
server.enable = true;
tmproot.unsaved.ignore = [
"/var/db/dhcpcd/enp1s0.lease"
];
containers = {
instances.vaultwarden = {};
};
};
fileSystems = {
@@ -58,6 +58,8 @@
enp1s0.useDHCP = true;
};
};
#systemd.services.systemd-networkd.environment.SYSTEMD_LOG_LEVEL = "debug";
};
};
}