1

System: Fix after update

This commit is contained in:
2026-01-17 20:28:40 +01:00
parent 73eeff9a0e
commit 2e9a4b13d1
2 changed files with 17 additions and 5 deletions

View File

@ -310,6 +310,9 @@ with mylib.networking; {
man-pages
man-pages-posix
# Android
android-tools
# iPhone tethering + mounting
libimobiledevice
ifuse
@ -320,7 +323,6 @@ with mylib.networking; {
# as some extra configs are applied.
# I would prefer to use HomeManager for some of these but the modules don't exist (yet).
programs = {
adb.enable = true;
dconf.enable = !headless;
firejail.enable = true; # Use to run app in network namespace (e.g. through vpn)
fuse.userAllowOther = true; # Allow users to mount e.g. samba shares (cifs)

View File

@ -15,10 +15,20 @@ in {
config = mkIf cfg.enable {
services.resolved = {
enable = true;
llmnr = "false";
extraConfig = ''
DNSStubListener=no
'';
# llmnr = "false";
# extraConfig = ''
# DNSStubListener=no
# '';
settings.Resolve = {
DNS = config.networking.nameservers;
DNSOverTLS = false;
DNSSEC = false;
Domains = config.networking.search;
LLMNR = false;
DNSStubListener = false;
};
};
# Use the programs.nm-applet instead