From b36ab9ecf576766167c86115dedead3ebd52f91f Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 15 Feb 2024 19:50:19 +0100 Subject: [PATCH] Add atool to system packages --- system/profile/base.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/profile/base.nix b/system/profile/base.nix index 8bf5c48..cb0d79d 100644 --- a/system/profile/base.nix +++ b/system/profile/base.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, options, inputs, ...}@args: +{ config, lib, pkgs, options, inputs, outputs, ...}@args: let cfg = config.nixfiles.profile.base; in @@ -84,6 +84,7 @@ in # etc neofetch + outputs.packages."${pkgs.system}".atool ]; programs.neovim.defaultEditor = lib.mkDefault true;