diff --git a/.bauke/nix/stardust/programs-services.nix b/.bauke/nix/stardust/programs-services.nix index 732308d..543990f 100644 --- a/.bauke/nix/stardust/programs-services.nix +++ b/.bauke/nix/stardust/programs-services.nix @@ -19,6 +19,10 @@ }; }; + kdeconnect = { + enable = true; + }; + thunar = { plugins = with pkgs.xfce; [ thunar-archive-plugin ]; }; diff --git a/.bauke/nix/stardust/system.nix b/.bauke/nix/stardust/system.nix index 1891d93..78438ab 100644 --- a/.bauke/nix/stardust/system.nix +++ b/.bauke/nix/stardust/system.nix @@ -88,9 +88,9 @@ # specified twice. To make it work, right-click the NetworkManager tray # icon and toggle "Enable Networking", then check "/etc/resolv.conf" that # 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 = { @@ -117,4 +117,11 @@ host.enable = true; }; }; + + xdg = { + portal = { + enable = true; + extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; + }; + }; }