Compare commits

...

3 commits

Author SHA1 Message Date
Harald Hoyer d8ab5afa22 fix(hardware-config): correct closing bracket indentation
Corrected the indentation of the closing bracket in the hardware configuration. This improves readability and consistency in the code format.
2024-07-25 13:53:52 +02:00
Harald Hoyer 20f610b628 feat: add extraConfig for systemd-resolved
Enabled ResolveUnicastSingleLabel option in systemd-resolved configuration. This ensures unicast single-label domain names can be resolved. Added in the extraConfig section.
2024-07-25 13:53:45 +02:00
Harald Hoyer 629c69f028 fix: correct indentation in systemPackages list
The alacritty package entry was misaligned in the list of systemPackages. This fix ensures consistent indentation for better readability and maintainability.
2024-07-25 13:53:32 +02:00
3 changed files with 5 additions and 2 deletions

View file

@ -27,6 +27,9 @@ with lib.metacfg;
services.resolved.enable = true; services.resolved.enable = true;
services.resolved.dnssec = "allow-downgrade"; services.resolved.dnssec = "allow-downgrade";
services.resolved.extraConfig = ''
ResolveUnicastSingleLabel=yes;
'';
systemd.packages = [ pkgs.cloudflare-warp ]; # for warp-cli systemd.packages = [ pkgs.cloudflare-warp ]; # for warp-cli