From a5d244afb489edda4e633ca6316f81459a3c7034 Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Wed, 30 Oct 2024 11:02:05 +0100 Subject: [PATCH] misc updates --- hosts/nuc/modules/torrent/default.nix | 4 ++-- shared/nix.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/nuc/modules/torrent/default.nix b/hosts/nuc/modules/torrent/default.nix index 2bff346..0b7c0e0 100644 --- a/hosts/nuc/modules/torrent/default.nix +++ b/hosts/nuc/modules/torrent/default.nix @@ -19,9 +19,9 @@ in serviceConfig = { Type = "oneshot"; RemainAfterExit = true; - ExecStart = "${pkgs.iproute}/bin/ip netns add %I"; + ExecStart = "${pkgs.iproute2}/bin/ip netns add %I"; ExecStartPost = "${pkgs.iproute2}/bin/ip netns exec %I ${pkgs.iproute2}/bin/ip link set dev lo up"; - ExecStop = "${pkgs.iproute}/bin/ip netns del %I"; + ExecStop = "${pkgs.iproute2}/bin/ip netns del %I"; }; }; diff --git a/shared/nix.nix b/shared/nix.nix index 4a69065..fe7070a 100644 --- a/shared/nix.nix +++ b/shared/nix.nix @@ -9,7 +9,7 @@ distributedBuilds = true; settings = { auto-optimise-store = true; - experimental-features = [ "nix-command" "flakes" "repl-flake" ]; + experimental-features = [ "nix-command" "flakes" ]; substituters = [ "https://cache.rfive.de" "https://cache.ifsr.de"