From b1b34f25a33bdbf3b517411fa8e0d3d1ef4552d4 Mon Sep 17 00:00:00 2001 From: kekrby Date: Tue, 18 Oct 2022 21:18:36 +0300 Subject: [PATCH] t2-iso-minimal: don't add vim to `environment.systemPackages` as it is installed by default --- nix/t2-iso-minimal.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nix/t2-iso-minimal.nix b/nix/t2-iso-minimal.nix index 010850c..a6d1b6e 100644 --- a/nix/t2-iso-minimal.nix +++ b/nix/t2-iso-minimal.nix @@ -10,8 +10,4 @@ # ZFS is broken and prevents building without this nixpkgs.config.allowBroken = true; - - environment.systemPackages = with pkgs; [ - vim - ]; }