From aa63ba907a1094f9e9c4ff7ed877bda275383c34 Mon Sep 17 00:00:00 2001 From: triethyl Date: Wed, 20 Aug 2025 20:03:01 -0400 Subject: created dfmodsync package --- pkgs/default.nix | 1 + pkgs/dfmodsync.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 pkgs/dfmodsync.nix diff --git a/pkgs/default.nix b/pkgs/default.nix index 32a1f6a..892b6a5 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -7,4 +7,5 @@ setup-manager = pkgs.callPackage ./setup-manager {}; custom-neovim = pkgs.callPackage ./custom-neovim {inherit inputs;}; old-custom-neovim = pkgs.callPackage ./old-custom-neovim {inherit inputs;}; + dfmodsync = pkgs.callPackage ./dfmodsync.nix {}; } diff --git a/pkgs/dfmodsync.nix b/pkgs/dfmodsync.nix new file mode 100644 index 0000000..fd6e18c --- /dev/null +++ b/pkgs/dfmodsync.nix @@ -0,0 +1,19 @@ +{pkgs}: +pkgs.writers.writeNuBin "dfmodsync" +/* +nu +*/ +'' + + let workshop_dir = "~/.local/share/Steam/steamapps/workshop/content/975370" + let df_dir = "~/.local/share/Steam/steamapps/common/Dwarf Fortress/mods" + + let workshop_dir = $workshop_dir | path expand + let df_dir = $df_dir | path expand + + glob $"($df_dir)/*" | each {rm -rf $in ; print $"deleted ($in | path basename)"} + glob $"($workshop_dir)/*" | each {cp -r $in $df_dir; print $"copied ($in | path basename)"} + + print "Synced Mods!" + +'' -- cgit v1.2.3