From 59d27f43677e80f9943435ab6949b75a9752eff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 10 Aug 2023 11:45:14 +0200 Subject: [PATCH] feat: add rage to common system packages --- system/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/common.nix b/system/common.nix index e018006..e651391 100644 --- a/system/common.nix +++ b/system/common.nix @@ -3,5 +3,5 @@ { imports = [ ./zram.nix ./i18n.nix ./nix.nix ./networking.nix ./hardened.nix ]; - environment.systemPackages = with pkgs; [ wget curl openssl neovim ]; + environment.systemPackages = with pkgs; [ wget curl openssl rage neovim ]; }