From d0b15ca7269746259c9dcc35dbbf930ecc8df7a1 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Wed, 17 Apr 2024 16:05:00 +0100 Subject: [PATCH] Removed extension and fixes for Debian --- home.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home.nix b/home.nix index 3104bb52..8ed35efa 100644 --- a/home.nix +++ b/home.nix @@ -44,7 +44,6 @@ # GNOME Extensions gnomeExtensions.vitals gnomeExtensions.clipboard-indicator - gnomeExtensions.rounded-window-corners # Override nerdfont to install JetBrains only. (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) @@ -83,7 +82,7 @@ (writeShellScriptBin "reload" '' set -x - sudo nix-channel --update + sudo -i nix-channel --update nix-channel --update home-manager switch -b backup { set +x; } 2>/dev/null @@ -100,7 +99,9 @@ if [ "$(uname -s)" = "Darwin" ]; then sudo softwareupdate -iaR else - sudo timeshift --create + if [ "$(command -v timeshift)" ]; then + sudo timeshift --create + fi sudo journalctl --vacuum-time=7d # Flatpak if [ "$(command -v flatpak)" ]; then @@ -196,7 +197,6 @@ enabled-extensions = [ "Vitals@CoreCoding.com" "clipboard-indicator@tudmotu.com" - "rounded-window-corners@yilozt" # Add new extensions to the packages too! This section only enables extensions, not install them. ];