stockholm/krebs/1systems/news/config.nix

26 lines
633 B
Nix
Raw Normal View History

2021-01-24 15:32:30 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
2023-06-10 10:50:53 +00:00
../../../krebs
../../../krebs/2configs
2021-01-24 15:32:30 +00:00
2023-06-10 10:50:53 +00:00
../../../krebs/2configs/ircd.nix
../../../krebs/2configs/go.nix
2021-01-24 15:32:30 +00:00
#### NEWS ####
2023-06-10 10:50:53 +00:00
../../../krebs/2configs/ircd.nix
../../../krebs/2configs/news.nix
2021-01-24 15:32:30 +00:00
];
krebs.build.host = config.krebs.hosts.news;
2023-11-29 18:53:42 +00:00
krebs.hosts.news.ssh.privkey.path = "${config.krebs.secret.directory}/ssh.id_ed25519";
2021-01-24 15:32:30 +00:00
boot.isContainer = true;
networking.useDHCP = lib.mkForce true;
2023-02-04 16:51:20 +00:00
krebs.sync-containers3.inContainer = {
enable = true;
pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMBVZomw68WDQy0HsHhNbWK1KpzaR5aRUG1oioE7IgCv";
2021-01-24 15:32:30 +00:00
};
}