summaryrefslogtreecommitdiffstats
path: root/tv/2configs/test.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2015-08-29 00:19:52 +0200
committertv <tv@krebsco.de>2015-08-29 00:20:58 +0200
commitff4283704f16b2f708ab9a0063063149379e0f5e (patch)
treeb8c912fdd43dfda3106e2082303151636317cc3a /tv/2configs/test.nix
parentb9ba0d66d1b34831eba134bc27f13099fd184795 (diff)
tv: use only pkgs
Diffstat (limited to 'tv/2configs/test.nix')
-rw-r--r--tv/2configs/test.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/tv/2configs/test.nix b/tv/2configs/test.nix
index fa556ec..409b4e9 100644
--- a/tv/2configs/test.nix
+++ b/tv/2configs/test.nix
@@ -3,8 +3,6 @@
with import ../4lib { inherit lib pkgs; };
let
- tvpkgs = import ../5pkgs { inherit lib pkgs; };
-
out = {
environment.systemPackages = [
su-test
@@ -17,12 +15,12 @@ let
};
};
- su-test = tvpkgs.execveBin "su-test" rec {
+ su-test = pkgs.execveBin "su-test" rec {
filename = "/var/setuid-wrappers/sudo";
argv = ["sudo" "-u" "test" "-i"];
};
- test-shell = tvpkgs.execve "test-shell" rec {
+ test-shell = pkgs.execve "test-shell" rec {
filename = "${pkgs.bash}/bin/bash";
argv = ["sh" "--noprofile" "-l"];
envp.ENV = pkgs.writeText "test-env" ''