summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2023-01-14 00:19:27 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-05-12 22:29:25 -0300
commitd87f1b8c9f6060319b277f089f6e698de3fd1567 (patch)
tree011821d9a9bd4594197a593733bed87961e26b1c
parent4c6a14172058ba37527da454f37a513d35a3a1c7 (diff)
downloadnixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.tar
nixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.tar.gz
nixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.tar.bz2
nixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.tar.lz
nixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.tar.xz
nixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.tar.zst
nixpkgs-d87f1b8c9f6060319b277f089f6e698de3fd1567.zip
nixos/tests/hardened.nix: get rid of `with lib`
-rw-r--r--nixos/tests/hardened.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/tests/hardened.nix b/nixos/tests/hardened.nix
index ccb85816854..f54506224e5 100644
--- a/nixos/tests/hardened.nix
+++ b/nixos/tests/hardened.nix
@@ -6,7 +6,6 @@ import ./make-test-python.nix ({ pkgs, ... } : {
 
   nodes.machine =
     { lib, pkgs, config, ... }:
-    with lib;
     { users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; };
       users.users.sybil = { isNormalUser = true; group = "wheel"; };
       imports = [ ../modules/profiles/hardened.nix ];