floating-cat

Results 14 comments of floating-cat

I use `fetch-depth: 2147483647` to workaround this problem. The depth number is learned from here https://stackoverflow.com/a/6802238 > You can run git fetch --depth=2147483647 > The special depth 2147483647 (or 0x7fffffff,...

I wasted some time investigating why sops-nix doesn't generate the secret files for me after using `home-manager switch`, then I noticed I needed to start `systemctl start --user sops-nix` once...

I use the below in my home-manager config file to workaround this issue: ``` home.activation.setupEtc = config.lib.dag.entryAfter [ "writeBoundary" ] '' run /usr/bin/systemctl start --user sops-nix ''; ``` You may...