No description
Find a file
Erwin Boskma 8651d6e83c
Updates: flake.lock
Flake lock file updates:

• Updated input 'eww':
    'github:elkowar/eww/81398d6d28f19dc9e9932a1f9c69f58fcf95f09e?narHash=sha256-vGIuA21A8rM4gYlGyNumbVRyHaIaJKTnzYSLOq9PSE0%3D' (2024-12-26)
  → 'github:elkowar/eww/6ee166707fb644d501a6d9151a491d07916ca4ed?narHash=sha256-UyCF06z2evYpp92ErdqVw4meEGlmc/FGZubkr2Gqqxo%3D' (2024-12-27)
• Updated input 'ghostty':
    'github:ghostty-org/ghostty/a8e5eef11cc67f87f445626f9ca2993373774bf8?narHash=sha256-y6Ony5eq4F4E76Y2ZhALSEzBZ4GbGRVQIEScPieCDGI%3D' (2024-12-27)
  → 'github:ghostty-org/ghostty/6cbd69da7839260508466f9dfb2bc0c0fbb43991?narHash=sha256-kD49xAUMCWU60IRKoJiyJTaEUum7rk45OYjZfwWr3Ck%3D' (2024-12-28)
• Updated input 'home-manager':
    'github:nix-community/home-manager/35b98d20ca8f4ca1f6a2c30b8a2c8bb305a36d84?narHash=sha256-Gm%2B0DcbUS338vvkwyYWms5jsWlx8z8MeQBzcnIDuIkw%3D' (2024-12-24)
  → 'github:nix-community/home-manager/10e99c43cdf4a0713b4e81d90691d22c6a58bdf2?narHash=sha256-CyCZFhMUkuYbSD6bxB/r43EdmDE7hYeZZPTCv0GudO4%3D' (2024-12-28)
• Updated input 'nixos-hardware':
    'github:NixOS/nixos-hardware/def1d472c832d77885f174089b0d34854b007198?narHash=sha256-QIhd8/0x30gEv8XEE1iAnrdMlKuQ0EzthfDR7Hwl%2Bfk%3D' (2024-12-23)
  → 'github:NixOS/nixos-hardware/7c674c6734f61157e321db595dbfcd8523e04e19?narHash=sha256-e5IOgjQf0SZcFCEV/gMGrsI0gCJyqOKShBQU0iiM3Kg%3D' (2024-12-28)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/e0b3654b716098b47f3643c65fbb75ef49c033e1?narHash=sha256-2XkWYGgT%2B911gOLjgBj%2B8W8ZJk6P0qHJNz8RfKgT/5o%3D' (2024-12-27)
  → 'github:oxalica/rust-overlay/a16b9a7cac7f4d39a84234d62e91890370c57d76?narHash=sha256-3zXufMRWUdwmp8/BTmxVW/k4MyqsPjLnnt/IlQyZvhc%3D' (2024-12-28)
2024-12-28 17:00:30 +01:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules waybar: Add MPRIS module 2024-12-18 19:29:19 +01:00
incus-conf Add incus container template 2024-11-16 17:37:07 +01:00
lib Set up Bluesky PDS 2024-12-03 23:41:09 +01:00
machines odin: Remove obsolete Incus UI definition 2024-12-23 17:11:09 +01:00
modules pipewire: Use libcamera instead of v4l2 2024-12-19 09:06:43 +01:00
overlays Initial ghostty module 2024-12-15 14:58:13 +01:00
pkgs pds/pdsadmin: 0.4.67 -> 0.4.74 2024-12-20 11:19:26 +01:00
users home: Enable playerctld 2024-12-19 09:07:37 +01:00
wallpapers Add Space Shuttle Endeavour wallpaper 2023-10-05 15:02:14 +02:00
.dir-locals.el dir-locals: Revert back to nixfmt 2024-04-23 16:30:56 +02:00
.envrc envrc: add shebang 2024-07-09 21:34:30 +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 Add searchnx container 2024-12-23 17:10:40 +01:00
flake.lock Updates: flake.lock 2024-12-28 17:00:30 +01:00
flake.nix Update: flake.lock flake.nix 2024-12-23 16:44:15 +01:00
Justfile Use new colmena option so it can handle a dirty flake 2024-11-15 12:12:04 +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