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

• Updated input 'disko':
    'github:nix-community/disko/544a80a69d6e2da04e4df7ec8210a858de8c7533?narHash=sha256-e4Pw%2B30vFAxuvkSTaTypd9zYemB/QlWcH186dsGT%2BMs%3D' (2024-07-01)
  → 'github:nix-community/disko/64679cd7f318c9b6595902b47d4585b1d51d5f9e?narHash=sha256-BymcV4HWtx2VFuabDCM4/nEJcfivCx0S02wUCz11mAY%3D' (2024-07-04)
• Updated input 'emacs-overlay':
    'github:nix-community/emacs-overlay/bbe883e60c65dd9254d010e98a1a8a654a26f9d8?narHash=sha256-1E5AX/Si2p2yXuMX5yixQ%2BP1AeVcrV0%2B2gfuBrTRkgY%3D' (2024-07-02)
  → 'github:nix-community/emacs-overlay/44cd01cff6f778fed1fdef78e54972c81f0986f1?narHash=sha256-VJaTtUZArFFhDCTYIfrB9SF%2BtcnlrhELNJpKzpvYPqw%3D' (2024-07-04)
• Updated input 'home-manager':
    'github:nix-community/home-manager/36e2f9da91ce8b63a549a47688ae60d47c50de4b?narHash=sha256-SRq0ZRkqagqpMGVf4z9q9CIWRbPYjO7FTqSJyWh7nes%3D' (2024-07-03)
  → 'github:nix-community/home-manager/0a30138c694ab3b048ac300794c2eb599dc40266?narHash=sha256-lmE7B%2BQXw7lWdBu5GQlUABSpzPk3YBb9VbV%2BIYK5djk%3D' (2024-07-03)
• Updated input 'microvm':
    'github:astro/microvm.nix/3692c11ceed00632345b106b24a8cd2c9ffe5569?narHash=sha256-nWGOQgqyhj7YynykVlM/DKxaYshhraV27R5tqQgWAEg%3D' (2024-06-27)
  → 'github:astro/microvm.nix/a808af7775f508a2afedd1e4940a382fe1194f21?narHash=sha256-fzZpuVnhw5uOtA4OuXw3a%2BOtpy8C%2BQV0Uu5XfhGEPSg%3D' (2024-07-03)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/fb733500aead50880b9b301f34a0061bf997d6f2?narHash=sha256-IGCdN/m7DfwUfxZjFnlTiTtpwSHCb01P/LWavAKD2jw%3D' (2024-07-03)
  → 'github:oxalica/rust-overlay/8deeed2dfa21837c7792b46b6a9b2e73f97b472b?narHash=sha256-h/O3PoV3KvQG4tC5UpANBZOsptAZCzEGiwyi%2B3oSpYc%3D' (2024-07-04)
2024-07-04 09:38:34 +02:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules river: Set XDG_CURRENT_DESKTOP 2024-06-27 14:57:33 +02:00
lib Remove unused input 2024-04-24 14:46:49 +02:00
machines valkyrie(coredns): Stop using coredns-tailscale due to issues 2024-07-03 15:49:22 +02:00
modules keycloak: Update plugins 2024-06-27 15:22:13 +02:00
overlays valkyrie(coredns): Stop using coredns-tailscale due to issues 2024-07-03 15:49:22 +02:00
pkgs dnspyre: init at 3.3.1 2024-07-03 11:29:57 +02:00
users home: add doggo DNS client 2024-07-03 11:30:12 +02: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 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 meili: init 2024-06-04 10:34:30 +02:00
flake.lock flake.lock: Update 2024-07-04 09:38:34 +02:00
flake.nix dnspyre: init at 3.3.1 2024-07-03 11:29:57 +02:00
Justfile Add task to Justfile to build package 2024-03-28 16:10:02 +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