No description
Erwin Boskma
c6e148d4e0
Flake lock file updates: • Updated input 'emacs-overlay': 'github:nix-community/emacs-overlay/1d4ed29d4d9d076210485697c325f8d6914d908f' (2023-11-14) → 'github:nix-community/emacs-overlay/cd979f7df596efe5f2c832a9309da59df07edba8' (2023-11-16) • Updated input 'emacs-overlay/nixpkgs-stable': 'github:NixOS/nixpkgs/da4024d0ead5d7820f6bd15147d3fe2a0c0cec73' (2023-11-10) → 'github:NixOS/nixpkgs/d4b5a67bbe9ef750bd2fdffd4cad400dd5553af8' (2023-11-14) • Updated input 'home-manager': 'github:nix-community/home-manager/280721186ab75a76537713ec310306f0eba3e407' (2023-11-12) → 'github:nix-community/home-manager/ab1459a1fb646c40419c732d05ec0bf2416d4506' (2023-11-15) • Updated input 'microvm': 'github:astro/microvm.nix/4caeec0f24d416ce19c76754cae572f1e1882ffe' (2023-11-05) → 'github:astro/microvm.nix/fb78ecd4e5b42bb5c4f57f36a80f99bbf3e0d010' (2023-11-10) • Updated input 'nixos-hardware': 'github:NixOS/nixos-hardware/df9bb8a436607da124e8cfa0fd19e70e9d9e0b7b' (2023-11-14) → 'github:NixOS/nixos-hardware/5689f3ebf899f644a1aabe8774d4f37eb2f6c2f9' (2023-11-14) • Updated input 'pre-commit-hooks': 'github:cachix/pre-commit-hooks.nix/ea758da1a6dcde6dc36db348ed690d09b9864128' (2023-11-06) → 'github:cachix/pre-commit-hooks.nix/e558068cba67b23b4fbc5537173dbb43748a17e8' (2023-11-15) • Updated input 'rust-overlay': 'github:oxalica/rust-overlay/e485313fc485700a9f1f9b8b272ddc0621d08357' (2023-11-14) → 'github:oxalica/rust-overlay/b7a041430733fccaa1ffc3724bb9454289d0f701' (2023-11-16) |
||
---|---|---|
home-manager/modules | ||
lib | ||
machines | ||
modules | ||
overlays | ||
pkgs | ||
users | ||
wallpapers | ||
.envrc | ||
.gitignore | ||
.projectile | ||
.sops.yaml | ||
flake.lock | ||
flake.nix | ||
Justfile | ||
krops.nix | ||
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 |