No description
Erwin Boskma
b0c1693488
Flake lock file updates: • Updated input 'microvm': 'github:astro/microvm.nix/0ab757d2d3e3214b0034b00f9cc3dcdba0b8c563?narHash=sha256-zxBh56jKE6AXhiUoktY6cOHPUTyqXWbI/Pyh5sSC5B4%3D' (2024-12-04) → 'github:astro/microvm.nix/5f0ab7953380a565c4e02083669bc529036970c7?narHash=sha256-k1g5MbTrURnYeb2XPwz3uLLKZJon7khTig2KvGv5pgs%3D' (2024-12-05) • Updated input 'microvm/spectrum': 'git+https://spectrum-os.org/git/spectrum?ref=refs/heads/main&rev=f1d94ee7029af18637dbd5fdf4749621533693fa' (2024-10-26) → 'git+https://spectrum-os.org/git/spectrum?ref=refs/heads/main&rev=80c9e9830d460c944c8f730065f18bb733bc7ee2' (2024-12-04) • Updated input 'nixos-hardware': 'github:NixOS/nixos-hardware/cceee0a31d2f01bcc98b2fbd591327c06a4ea4f9?narHash=sha256-fc6jTzIwCIVWTX50FtW6AZpuukuQWSEbPiyg6ZRGWFY%3D' (2024-12-03) → 'github:NixOS/nixos-hardware/2297628136baca35c0a49df29f2407034708b5eb?narHash=sha256-Mk7mV9N6En3%2BQZ%2B/9y29EZRzoJ%2BZoNU%2Bt8jPGzM%2Bdrc%3D' (2024-12-06) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/55d15ad12a74eb7d4646254e13638ad0c4128776?narHash=sha256-M1%2BuCoV5igihRfcUKrr1riygbe73/dzNnzPsmaLCmpo%3D' (2024-12-03) → 'github:nixos/nixpkgs/d0797a04b81caeae77bcff10a9dde78bc17f5661?narHash=sha256-kEsTJTUQfQFIJOcLYFt/RvNxIK653ZkTBIs4DG%2BcBns%3D' (2024-12-05) • Updated input 'rust-overlay': 'github:oxalica/rust-overlay/ba5ed0362eaae83fe8925a2d5cfcf356ff22f70f?narHash=sha256-Zlas3LFqrW8bVVrZYgkzS4VNkZgtZ/hsbYhO0GtKLys%3D' (2024-12-05) → 'github:oxalica/rust-overlay/020701e6057992329a7cfafc6e3c5d5658bbcf79?narHash=sha256-eh2i2GtqdWVOP7yjiWtB8FMUWktCZ4vjo81n6g5mSiE%3D' (2024-12-06) • Updated input 'treefmt-nix': 'github:numtide/treefmt-nix/49717b5af6f80172275d47a418c9719a31a78b53?narHash=sha256-JIPcz1PrpXUCbaccEnrcUS8jjEb/1vJbZz5KkobyFdM%3D' (2024-12-03) → 'github:numtide/treefmt-nix/50862ba6a8a0255b87377b9d2d4565e96f29b410?narHash=sha256-qKL3vjO%2BIXFQ0nTinFDqNq/sbbnnS5bMI1y0xX215fU%3D' (2024-12-05) |
||
---|---|---|
.forgejo/workflows | ||
home-manager/modules | ||
incus-conf | ||
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 |