No description
Find a file
Erwin Boskma 481791c950
flake.lock: Update
Flake lock file updates:

• Updated input 'atuin':
    'github:atuinsh/atuin/19f70cdc918769e0485b0e4aba4069327e96dc3b?narHash=sha256-thdSd8oeztVJ3Ly2SvPCfoP%2BFCoDQCVHSizO0vMGHsI%3D' (2024-04-16)
  → 'github:atuinsh/atuin/cb19925011d889c513e1bbedc446e399597e38a0?narHash=sha256-t908c6ksrKweZU6Hag4dlFvk238oUgBxccnK9T25UMk%3D' (2024-04-17)
• Updated input 'emacs-overlay':
    'github:nix-community/emacs-overlay/502906af674eae890790ec48cad959d42dc2f040?narHash=sha256-LpbYsViVHQ19Qyjw4FxlTWcZNSbiagMfPMrUBuDVTBk%3D' (2024-04-16)
  → 'github:nix-community/emacs-overlay/208d00a7f96d920a153ab90f257357e1aa1d6d77?narHash=sha256-%2BZtrHsUp8vEbQ9FFTj%2B4ku7byW/ly1JVNqgdiNVBMis%3D' (2024-04-17)
• Updated input 'home-manager':
    'github:nix-community/home-manager/1c43dcfac48a2d622797f7ab741670fdbcf8f609?narHash=sha256-t0P/rKlsE5l1O3O2LYtAelLzp7PeoPCSzsIietQ1hSM%3D' (2024-04-15)
  → 'github:nix-community/home-manager/fa8c16e2452bf092ac76f09ee1fb1e9f7d0796e7?narHash=sha256-LmaabaQZdx52MPGKPRt9Opoc9Gd9RbwvCdysUUYQoXI%3D' (2024-04-16)
• Updated input 'nixos-hardware':
    'github:NixOS/nixos-hardware/f58b25254be441cd2a9b4b444ed83f1e51244f1f?narHash=sha256-7/5ubuwdEbQ7Z%2BVqd4u0mM5L2VMNDsBh54visp27CtQ%3D' (2024-04-12)
  → 'github:NixOS/nixos-hardware/f2d364de6589f7a029624983593eafc3c4dac726?narHash=sha256-OrBm62B%2BX9jylr6cPgKc%2B5OSgF2PRW9IY0ARCOtURMY%3D' (2024-04-17)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/cfd6b5fc90b15709b780a5a1619695a88505a176?narHash=sha256-WKm9CvgCldeIVvRz87iOMi8CFVB1apJlkUT4GGvA0iM%3D' (2024-04-12)
  → 'github:nixos/nixpkgs/5672bc9dbf9d88246ddab5ac454e82318d094bb8?narHash=sha256-NLznXB5AOnniUtZsyy/aPWOk8ussTuePp2acb9U%2BISA%3D' (2024-04-16)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/847bc25ebab8dc72a86d2b1f0c088740eebbb1b8?narHash=sha256-dPGrCy5ttx6E3bUOmDynY/cAotRqvoIAimZlbv%2BZr1w%3D' (2024-04-16)
  → 'github:oxalica/rust-overlay/7ce479797ae35ab40fbdf04fe5a8f8bfc92a2634?narHash=sha256-HY8uzaDMzn6umca2kE4ce5BEujaw%2BgvEiC5xTwAHSC4%3D' (2024-04-17)
2024-04-17 21:59:35 +02:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules fish: Add tree alias 2024-04-16 19:32:50 +02:00
lib fixup! Get atuin from bleeding edge 2024-04-10 22:19:20 +02:00
machines heimdall: Use default method of TLS certificate handling 2024-04-16 21:47:37 +02:00
modules Add treefmt, run formatter 2024-04-16 19:32:32 +02:00
overlays git-repo-go: Add to overlay 2024-03-28 14:15:12 +01:00
pkgs Add treefmt, run formatter 2024-04-16 19:32:32 +02:00
users work: Clean up packages 2024-04-17 10:30:58 +02:00
wallpapers Add Space Shuttle Endeavour wallpaper 2023-10-05 15:02:14 +02:00
.dir-locals.el Add .dir-locals.el 2024-02-29 14:25:26 +01:00
.envrc Load .env file 2023-04-24 08:25:18 +02:00
.gitattributes Mark flake.lock as binary for merge conflicts 2024-01-23 13:40:29 +01:00
.gitignore Remove terraform stuff 2024-01-09 22:25:14 +01:00
.projectile Update flake.lock, update kernel version 2022-03-23 15:42:32 +01:00
.sops.yaml Clean up sops file 2024-02-29 14:25:29 +01:00
flake.lock flake.lock: Update 2024-04-17 21:59:35 +02:00
flake.nix flake: Make caddy-with-plugins follow local treefmt-nix 2024-04-16 19:52:48 +02:00
Justfile Add task to Justfile to build package 2024-03-28 16:10:02 +01:00
krops.nix Run nixfmt 2024-02-05 11:46:52 +01:00
README.org Replace exa with eza, because the former is unmaintained 2023-09-11 20:11:08 +02:00
statix.toml Add pre-commit hooks and fix style issues 2022-11-19 20:00:54 +01:00

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