summaryrefslogtreecommitdiffstats
path: root/tv
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-10-25 09:55:51 +0100
committertv <tv@shackspace.de>2015-10-25 09:55:51 +0100
commit8afb910e2a87e0edc9fc4693ed09b4a0ce0fb206 (patch)
treecbf690a8e5cdf5fd19682a17e536eff1047d5fa2 /tv
parente281271239289a266777d0b429e604ec9aeaed41 (diff)
tv: drop test.nix
Diffstat (limited to 'tv')
-rw-r--r--tv/1systems/wu.nix1
-rw-r--r--tv/2configs/test.nix31
2 files changed, 0 insertions, 32 deletions
diff --git a/tv/1systems/wu.nix b/tv/1systems/wu.nix
index a5232c9e..586ad172 100644
--- a/tv/1systems/wu.nix
+++ b/tv/1systems/wu.nix
@@ -30,7 +30,6 @@ with lib;
../2configs/git.nix
../2configs/mail-client.nix
../2configs/xserver
- ../2configs/test.nix
{
environment.systemPackages = with pkgs; [
diff --git a/tv/2configs/test.nix b/tv/2configs/test.nix
deleted file mode 100644
index f5f068d6..00000000
--- a/tv/2configs/test.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
- out = {
- environment.systemPackages = [
- su-test
- ];
- security.sudo.extraConfig = ''
- tv ALL=(test) NOPASSWD: ALL
- '';
- users.extraUsers.test = {
- shell = "${test-shell}";
- };
- };
-
- su-test = pkgs.execveBin "su-test" rec {
- filename = "/var/setuid-wrappers/sudo";
- argv = ["sudo" "-u" "test" "-i"];
- };
-
- test-shell = pkgs.execve "test-shell" rec {
- filename = "${pkgs.bash}/bin/bash";
- argv = ["sh" "--noprofile" "-l"];
- envp.ENV = pkgs.writeText "test-env" ''
- ${shell.cat "Hello, `$(j0w\nd0g!)`!\\o/\n"} >&2
- '';
- };
-
-in out