diff --git a/modules/nix.nix b/modules/nix.nix index 1c9c864..3137fa0 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -8,15 +8,10 @@ trustedUsers = [ "root" "alukard" "@wheel" ]; - # nrBuildUsers = 16; - - # optimise.automatic = lib.mkIf (config.device != "Dell-Laptop") true; optimise.automatic = true; - # autoOptimiseStore = config.deviceSpecific.isSSD; autoOptimiseStore = false; - # package = pkgs.nixFlakes; package = inputs.nix.packages.x86_64-linux.nix; extraOptions = '' diff --git a/modules/overlay.nix b/modules/overlay.nix index 82710a2..edd14ec 100644 --- a/modules/overlay.nix +++ b/modules/overlay.nix @@ -40,12 +40,6 @@ in wine = super.wineWowPackages.staging; qbittorrent = super.qbittorrent.overrideAttrs (stable: rec { version = "enchanced-edition"; - # src = super.fetchFromGitHub { - # owner = "c0re100"; - # repo = "qBittorrent-Enhanced-Edition"; - # rev = "release-${version}"; - # sha256 = "1pfwg95vi1yig36qkganhqw1rz28qfzlfpixnbb3hibvzsjl2p8m"; - # }; src = inputs.qbittorrent-ee; }); rust-stable = pkgs.latest.rustChannels.stable.rust.override { diff --git a/modules/services.nix b/modules/services.nix index c094893..99010d3 100644 --- a/modules/services.nix +++ b/modules/services.nix @@ -35,15 +35,15 @@ with config.deviceSpecific; { services.udev.packages = [ pkgs.stlink ]; - services.avahi = { - enable = true; - nssmdns = true; - publish = { - enable = true; - addresses = true; - domain = true; - }; - }; + # services.avahi = { + # enable = true; + # nssmdns = true; + # publish = { + # enable = true; + # addresses = true; + # domain = true; + # }; + # }; systemd.services.systemd-udev-settle.enable = false; diff --git a/modules/virtualisation.nix b/modules/virtualisation.nix index bb803d3..b25b1eb 100644 --- a/modules/virtualisation.nix +++ b/modules/virtualisation.nix @@ -12,4 +12,9 @@ }; virtualisation.spiceUSBRedirection.enable = config.deviceSpecific.enableVirtualisation; + + networking.nat = { + enable = true; + internalInterfaces = ["ve-+"]; + }; } \ No newline at end of file