fix: Don't remove resolved.enable = false else it'll fuck up ssh into tsuba
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
This is a dns issue where if we dont explicitly disable it then it conflicts with the 53 port from the pihole container and we can't ssh into the device anymore
This commit is contained in:
@@ -1,11 +1,6 @@
|
|||||||
{...}: {
|
{...}: {
|
||||||
# services.resolved = {
|
services.resolved = {
|
||||||
# enable = false;
|
enable = false;
|
||||||
# settings = {
|
};
|
||||||
# Resolve = {
|
|
||||||
# FallbackDNS = [];
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
networking.nameservers = [];
|
networking.nameservers = [];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,10 +12,10 @@
|
|||||||
systemd.network.wait-online.enable = false;
|
systemd.network.wait-online.enable = false;
|
||||||
|
|
||||||
fileSystems."/home".neededForBoot = true;
|
fileSystems."/home".neededForBoot = true;
|
||||||
boot.loader.raspberryPi.bootloader = "kernel";
|
boot.loader.raspberry-pi.bootloader = "kernel";
|
||||||
|
|
||||||
system.nixos.tags = let
|
system.nixos.tags = let
|
||||||
cfg = config.boot.loader.raspberryPi;
|
cfg = config.boot.loader.raspberry-pi;
|
||||||
in [
|
in [
|
||||||
"raspberry-pi-${cfg.variant}"
|
"raspberry-pi-${cfg.variant}"
|
||||||
cfg.bootloader
|
cfg.bootloader
|
||||||
|
|||||||
Reference in New Issue
Block a user