remove niv residue

```fish
for d in {.,**/*}
    if [ ! -d $d ]; continue; end

    set from ./nix/sources.nix
    set to   ./npins

    set from (realpath -s $from --relative-to $d)
    set to   (realpath -s $to   --relative-to $d)

    echo "($d, $from, $to)"

    for f in $d/*
        if [ ! -f $f ]; continue; end
        sed -i "s=$from=$to=" $f
    end
end
```
This commit is contained in:
Primrose 2025-07-03 08:34:22 +02:00
parent d93f2c3a1c
commit 8cc6d2b71c
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
22 changed files with 22 additions and 24 deletions

View file

@ -1,5 +1,5 @@
let
sources = import ../sources.nix;
sources = import ../../npins;
in
final: _: {
disko =