System: Fix after update
This commit is contained in:
@ -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)
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user