1
Fork 0

Enable KDE Connect and XDG Portal, and update the RPi IP.

This commit is contained in:
Bauke 2024-07-28 22:32:59 +02:00
parent 0dec8f9faa
commit d414f9e2ce
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 13 additions and 2 deletions

View File

@ -19,6 +19,10 @@
}; };
}; };
kdeconnect = {
enable = true;
};
thunar = { thunar = {
plugins = with pkgs.xfce; [ thunar-archive-plugin ]; plugins = with pkgs.xfce; [ thunar-archive-plugin ];
}; };

View File

@ -88,9 +88,9 @@
# specified twice. To make it work, right-click the NetworkManager tray # specified twice. To make it work, right-click the NetworkManager tray
# icon and toggle "Enable Networking", then check "/etc/resolv.conf" that # icon and toggle "Enable Networking", then check "/etc/resolv.conf" that
# this IP is at the top. # this IP is at the top.
insertNameservers = [ "192.168.0.202" ]; insertNameservers = [ "192.168.1.181" ];
}; };
nameservers = [ "192.168.0.202" ]; nameservers = [ "192.168.1.181" ];
}; };
security = { security = {
@ -117,4 +117,11 @@
host.enable = true; host.enable = true;
}; };
}; };
xdg = {
portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
};
};
} }