System: Fix after update
This commit is contained in:
@ -310,6 +310,9 @@ with mylib.networking; {
|
|||||||
man-pages
|
man-pages
|
||||||
man-pages-posix
|
man-pages-posix
|
||||||
|
|
||||||
|
# Android
|
||||||
|
android-tools
|
||||||
|
|
||||||
# iPhone tethering + mounting
|
# iPhone tethering + mounting
|
||||||
libimobiledevice
|
libimobiledevice
|
||||||
ifuse
|
ifuse
|
||||||
@ -320,7 +323,6 @@ with mylib.networking; {
|
|||||||
# as some extra configs are applied.
|
# as some extra configs are applied.
|
||||||
# I would prefer to use HomeManager for some of these but the modules don't exist (yet).
|
# I would prefer to use HomeManager for some of these but the modules don't exist (yet).
|
||||||
programs = {
|
programs = {
|
||||||
adb.enable = true;
|
|
||||||
dconf.enable = !headless;
|
dconf.enable = !headless;
|
||||||
firejail.enable = true; # Use to run app in network namespace (e.g. through vpn)
|
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)
|
fuse.userAllowOther = true; # Allow users to mount e.g. samba shares (cifs)
|
||||||
|
|||||||
@ -15,10 +15,20 @@ in {
|
|||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
services.resolved = {
|
services.resolved = {
|
||||||
enable = true;
|
enable = true;
|
||||||
llmnr = "false";
|
|
||||||
extraConfig = ''
|
# llmnr = "false";
|
||||||
DNSStubListener=no
|
# 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
|
# Use the programs.nm-applet instead
|
||||||
|
|||||||
Reference in New Issue
Block a user