From 05eb3e60f0ba5769b65990bb0754e2648500dc87 Mon Sep 17 00:00:00 2001 From: derfenix Date: Tue, 2 Sep 2025 12:33:44 +0300 Subject: [PATCH] Fix PT git and syncthing, cleanup --- flake.nix | 1 - modules/hm/pt.nix | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index d37802e..9cb8e08 100644 --- a/flake.nix +++ b/flake.nix @@ -108,7 +108,6 @@ inherit inputs; pkgsStable = pkgsStableSettings host.system; hosts = hosts; - ip = host.ip; quirks = (quirks: (import ./quirks { inherit quirks; })); }; pkgs = pkgsSettings host.system; diff --git a/modules/hm/pt.nix b/modules/hm/pt.nix index 8539750..c7cec33 100644 --- a/modules/hm/pt.nix +++ b/modules/hm/pt.nix @@ -5,7 +5,7 @@ ... }: let - devFolder = "~/dev/PT"; + devFolder = "~/dev/PT/"; conf = config.pt; in { @@ -55,10 +55,12 @@ in home.file.ptDevStIgnore = { enable = true; - target = lib.removePrefix "~/" (devFolder + "/.stignore"); + target = lib.removePrefix "~/" (devFolder + ".stignore"); text = '' **/.devenv/ **/.direnv/ + **/.volumes + **/*.qcow2 ''; };