mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
12 lines
263 B
Nix
12 lines
263 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
flake.overlays.show-files-to-be-deleted =
|
||
|
final: prev: {
|
||
|
show-files-to-be-deleted = final.writeShellScriptBin "show-files-to-be-deleted" ''
|
||
|
[ $(id -u) == 0 ] || exec sudo $0
|
||
|
find / -mount -type f
|
||
|
'';
|
||
|
};
|
||
|
}
|
||
|
|