feat: add fs-diff script for impermanence check

This commit is contained in:
Swarsel 2024-08-05 01:46:18 +02:00
parent c0a2be3791
commit ea81fcf56e
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
8 changed files with 51 additions and 4 deletions

6
pkgs/fs-diff/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ writeShellApplication, sway }:
writeShellApplication {
name = "fs-diff";
text = builtins.readFile ../../scripts/fs-diff.sh;
}