From 04782f64f536383061095ca56f0f1e20e47dbaff Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 20 Jul 2024 17:34:53 +0100 Subject: [PATCH] Disabled sb-updates script --- .../optional/desktop/dwm/scripts/sb-updates.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home/common/optional/desktop/dwm/scripts/sb-updates.nix b/home/common/optional/desktop/dwm/scripts/sb-updates.nix index d2df347..590c7c1 100644 --- a/home/common/optional/desktop/dwm/scripts/sb-updates.nix +++ b/home/common/optional/desktop/dwm/scripts/sb-updates.nix @@ -2,12 +2,12 @@ { home.packages = with pkgs; [ (writeShellScriptBin "sb-updates" '' - # Gets number of flake inputs that are ready for update - # Checks every 60 minutes - inputs=$(cd /etc/nixos && - nix flake update --output-lock-file <(cat flake.nix) 2> /tmp/update && - cat /tmp/update | grep -c Update) - printf "[ $inputs] " + # Gets number of flake inputs that are ready for update + # Checks every 60 minutes + # inputs=$(cd /etc/nixos && + # nix flake update --output-lock-file <(cat flake.nix) 2> /tmp/update && + # cat /tmp/update | grep -c Update) + # printf "[ $inputs] " '') ]; }