From 38c03ffac76248c327eebfcd365169a65141aa21 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 3 Mar 2024 21:23:26 +0000 Subject: [PATCH] Remove push-iosevka-cache script Not needed now that it's moved to separate repo --- home/scripts/default.nix | 2 -- home/scripts/push-iosevka-cache.sh | 5 ----- 2 files changed, 7 deletions(-) delete mode 100644 home/scripts/push-iosevka-cache.sh diff --git a/home/scripts/default.nix b/home/scripts/default.nix index bcf56cb2..20aedf51 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -2,8 +2,6 @@ home.packages = [ (pkgs.writeShellScriptBin "git-sync-all" (builtins.readFile ./git-sync-all.sh)) - (pkgs.writeShellScriptBin "push-iosevka-cache" - (builtins.readFile ./push-iosevka-cache.sh)) (pkgs.writeShellScriptBin "rsync-local-config" (builtins.readFile ./rsync-local-config.sh)) (pkgs.writeShellScriptBin "xdg-query-program" diff --git a/home/scripts/push-iosevka-cache.sh b/home/scripts/push-iosevka-cache.sh deleted file mode 100644 index cdcccb15..00000000 --- a/home/scripts/push-iosevka-cache.sh +++ /dev/null @@ -1,5 +0,0 @@ -HOSTNAME=$(hostname) -IOSEVKA_ETOILE=/etc/nixos/#nixosConfigurations.$HOSTNAME.config.stylix.fonts.sansSerif.package -IOSEVKA_AILE=/etc/nixos/#nixosConfigurations.$HOSTNAME.config.stylix.fonts.serif.package -IOSEVKA_CUSTOM=/etc/nixos/#nixosConfigurations.$HOSTNAME.config.stylix.fonts.monospace.package -nix copy --to ssh://xenia@legion "$IOSEVKA_ETOILE" "$IOSEVKA_AILE" "$IOSEVKA_CUSTOM"