From bcc46cdec8cf96d82ed782a0806aba843ddf663f Mon Sep 17 00:00:00 2001 From: servostar Date: Fri, 8 Dec 2023 16:06:14 +0100 Subject: [PATCH] added system wide packages to template --- template.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/template.nix b/template.nix index 762b694..26a8e53 100644 --- a/template.nix +++ b/template.nix @@ -1,3 +1,7 @@ { pkgs, config, ... }: { # put your nix module in here! + + environment.systemPackages = with pkgs; [ + # system wide packages + ]; }