dotfiles.nix/legacy/profiles/local.nix

17 lines
398 B
Nix
Raw Normal View History

2021-05-05 15:21:02 +00:00
{ config, ... }:
let local = name: [ "${name}" "${name}.local" ];
in {
2021-01-11 04:44:24 +00:00
networking.hosts = {
2021-05-05 15:21:02 +00:00
"192.168.1.99" = [ "pi.hole" ];
"192.168.1.98" = local "gagarin";
"192.168.1.10" = local "gemini";
"192.168.1.11" = local "deluge";
"192.168.1.12" = local "jackett";
"192.168.1.13" = local "sonarr";
"192.168.1.14" = local "radarr";
"192.168.1.15" = local "plex";
2021-01-11 04:44:24 +00:00
};
}