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

36 lines
1008 B
Nix
Raw Normal View History

2017-07-23 18:32:33 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
2023-06-10 10:50:53 +00:00
../../../krebs
../../../krebs/2configs
../../../krebs/2configs/nginx.nix
2017-07-25 22:22:45 +00:00
2023-06-10 10:50:53 +00:00
../../../krebs/2configs/buildbot-stockholm.nix
../../../krebs/2configs/binary-cache/nixos.nix
../../../krebs/2configs/ircd.nix
../../../krebs/2configs/reaktor2.nix
../../../krebs/2configs/wiki.nix
../../../krebs/2configs/acme.nix
../../../krebs/2configs/mud.nix
../../../krebs/2configs/repo-sync.nix
2021-09-08 14:03:38 +00:00
2023-06-10 10:50:53 +00:00
../../../krebs/2configs/cal.nix
../../../krebs/2configs/mastodon.nix
2022-11-28 16:40:13 +00:00
2023-06-10 10:50:53 +00:00
## (shackie irc bot
../../../krebs/2configs/shack/reaktor.nix
2017-07-23 18:32:33 +00:00
];
krebs.build.host = config.krebs.hosts.hotdog;
krebs.hosts.hotdog.ssh.privkey.path = "${config.krebs.secret.directory}/ssh.id_ed25519";
2022-12-09 15:01:25 +00:00
krebs.pages.enable = true;
2017-07-23 18:32:33 +00:00
boot.isContainer = true;
networking.useDHCP = false;
2023-02-12 13:24:19 +00:00
krebs.sync-containers3.inContainer = {
enable = true;
pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM20tYHHvwIgrJZzR35ATzH9AlTrM1enNKEQJ7IP6lBh";
};
2017-07-23 18:32:33 +00:00
}