diff --git a/systems/x86_64-linux/drivebystation-nix/configuration.nix b/systems/x86_64-linux/drivebystation-nix/configuration.nix index cc70240..8356a9f 100644 --- a/systems/x86_64-linux/drivebystation-nix/configuration.nix +++ b/systems/x86_64-linux/drivebystation-nix/configuration.nix @@ -161,12 +161,25 @@ qemu mpv krita + ntfs3g ]; environment.etc."xdg/autostart/xwaylandvideobridge.desktop".text = '' [Desktop Entry] Hidden=true ''; + services.udisks2.settings = { # Should fix mounting ntfs system partition - Did not work + "udisks2.conf" = { + defaults = { + allow_mount_internal = true; + allow_mount_system = true; + }; + }; + }; + + services.gvfs.enable = true; # For file manager integration + + virtualisation.libvirtd = { enable = true; @@ -195,9 +208,11 @@ # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 24800 #Synergy + 53317 #localsend ]; networking.firewall.allowedUDPPorts = [ 24800 #Synergy + 53317 #localsend ]; # Or disable the firewall altogether. # networking.firewall.enable = false;