From 2bce69ca5f04494b041ce9568da20f2a6e642ec7 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Sun, 18 Aug 2024 20:32:40 -0400 Subject: [PATCH] feat: add shcopy to headless hosts --- hosts/headless.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/headless.nix b/hosts/headless.nix index 13a1916..c497e12 100644 --- a/hosts/headless.nix +++ b/hosts/headless.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ @@ -8,5 +8,9 @@ ../../modules/scripts ../../modules/zsh.nix ]; + + home.packages = with pkgs; [ + (with nur.repos.aymanbagabas; shcopy) + ]; }