Fix PT git and syncthing, cleanup

This commit is contained in:
2025-09-02 12:33:44 +03:00
parent 44d6010887
commit 05eb3e60f0
2 changed files with 4 additions and 3 deletions

View File

@@ -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;

View File

@@ -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
'';
};