No description
Erwin Boskma
a7cdc18134
Flake lock file updates: • Updated input 'disko': 'github:nix-community/disko/b6215392ec3bd05e9ebfbb2f7945c414096fce8f?narHash=sha256-KOp33tls7jRAhcmu77aVxKpSMou8QgK0BC%2BY3sYLuGo%3D' (2024-10-12) → 'github:nix-community/disko/3b778f10eb275573da9f5c8a7a49e774200b87e5?narHash=sha256-FegyBabjV4868aJUbvFtqH0zKDEtUpeCAfnB1vWXeBg%3D' (2024-10-14) • Updated input 'emacs-overlay': 'github:nix-community/emacs-overlay/87e8ffccb53aa67dfaab7bd4fd9f27b543e73cec?narHash=sha256-pPzaB8a70Lc4utiOBJkoTg2Hw9R5KrQYbnxDXZLXEd4%3D' (2024-10-14) → 'github:nix-community/emacs-overlay/b195d7067b4f14651ed55660d7a9a3d8e38afc6d?narHash=sha256-oP4ocNELjYaIjpjq7GOqrMjgc6IfxmFh34UxnzZYEFI%3D' (2024-10-15) • Updated input 'home-manager': 'github:nix-community/home-manager/64c6325b28ebd708653dd41d88f306023f296184?narHash=sha256-nr5QiXwQcZmf6/auC1UpX8iAtINMtdi2mH%2BOkqJQVmU%3D' (2024-10-13) → 'github:nix-community/home-manager/e1aec543f5caf643ca0d94b6a633101942fd065f?narHash=sha256-ZHFrGNWDDriZ4m8CA/5kDa250SG1LiiLPApv1p/JF0o%3D' (2024-10-14) • Updated input 'rust-overlay': 'github:oxalica/rust-overlay/bdbe1611c2029de90bca372ce0b1e3b4fa65f55a?narHash=sha256-e4jz7yFADiZjMhv%2BiQwYtAN8AOUlOpbNQYnbwUFLjeM%3D' (2024-10-14) → 'github:oxalica/rust-overlay/4c6e317300f05b8871f585b826b6f583e7dc4a9b?narHash=sha256-fp4he1QQjE%2BvasDMspZYeXrwTm9otwEqLwEN6FKZ5v0%3D' (2024-10-15) |
||
---|---|---|
.forgejo/workflows | ||
home-manager/modules | ||
lib | ||
machines | ||
modules | ||
overlays | ||
pkgs | ||
users | ||
wallpapers | ||
.dir-locals.el | ||
.envrc | ||
.gitattributes | ||
.gitignore | ||
.projectile | ||
.sops.yaml | ||
flake.lock | ||
flake.nix | ||
Justfile | ||
README.org | ||
statix.toml |
Erwin's NixOS config
This configures my machines.
Useful oneliners
Remove all files except the smallest
$ ls -s size | head -n 1 | xargs stat -c %s | awk '{print $1 + 1}' | xargs -I '%S' fd -S +%Sb -X rm {} \;
cmd | Explanation |
---|---|
ls -s size |
List all files, sort by size (ls is aliased to eza in my setup) |
head -n 1 |
Take the first line |
xargs stat -c %s |
Print the size in bytes |
awk '{print $1 + 1} |
Add one to it |
xargs -I '%S' fd -S +%Sb -X rm {} \; |
Find all files larger than the smallest and delete them |