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

• Updated input 'ghostty':
    'github:ghostty-org/ghostty/5cb2fa6f7594202b12a2603bf32094aa75b1bf0e?narHash=sha256-z55IQogW9z4HhVeT55LlCUFKbYD5O5aLMnU5cX1WTto%3D' (2025-01-21)
  → 'github:ghostty-org/ghostty/ddf7173ae92b4992c4506b6df4681c0687cc29c3?narHash=sha256-A5w6%2B0Zc7b93nbCF6ayHbXIEO0%2Bh%2B8BR4byYGgTy%2BtY%3D' (2025-01-22)
• Updated input 'home-manager':
    'github:nix-community/home-manager/96dee79b178d295b716052feca3ee46abc085abe?narHash=sha256-e6PJI4Bd%2BQdpukHyd5F/fQY8fRUiNfCwvCRU8WXMSk8%3D' (2025-01-21)
  → 'github:nix-community/home-manager/cefb1889b96ddd1dac3dd4734e894f4cadab7802?narHash=sha256-qa/D3NC1JoApnUuLrq1gseBmIxeg6icm/ojPgggMDVQ%3D' (2025-01-22)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/5df43628fdf08d642be8ba5b3625a6c70731c19c?narHash=sha256-Tbk1MZbtV2s5aG%2BiM99U8FqwxU/YNArMcWAv6clcsBc%3D' (2025-01-16)
  → 'github:nixos/nixpkgs/9e4d5190a9482a1fb9d18adf0bdb83c6e506eaab?narHash=sha256-nmKOgAU48S41dTPIXAq0AHZSehWUn6ZPrUKijHAMmIk%3D' (2025-01-21)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/2103fcb16359438d42141bac873ed2367a05cbe7?narHash=sha256-4SavpRWfRw2pLG1qqErWpk/hI1eCzqjKcE1motxHZgo%3D' (2025-01-21)
  → 'github:oxalica/rust-overlay/06b8ed0eee289fe94c66f1202ced9a6a2c59a14c?narHash=sha256-dgF6htdmfNnZzVInifks6npnCAyVsIHWSpWNs10RSW0%3D' (2025-01-22)
2025-01-22 21:14:48 +01:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules swaylock: Remove unused module parameter 2025-01-09 14:59:30 +01:00
incus-conf Add incus container template 2024-11-16 17:37:07 +01:00
lib loki: Add nixos-facter 2025-01-15 08:51:00 +01:00
machines loki: Add nixos-facter 2025-01-15 08:51:00 +01:00
modules loki: Add samba, spice-gtk 2025-01-15 08:50:42 +01:00
overlays factorio: 2.0.28 -> 2.0.30 2025-01-22 21:11:55 +01:00
pkgs pds/pdsadmin: 0.4.67 -> 0.4.74 2024-12-20 11:19:26 +01:00
users work: Update ghostty config 2025-01-21 14:55:15 +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 2025-01-22 21:14:48 +01:00
flake.nix ghostty: Use GitHub URL 2024-12-29 17:30:45 +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