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

• Updated input 'microvm':
    'github:astro/microvm.nix/0ab757d2d3e3214b0034b00f9cc3dcdba0b8c563?narHash=sha256-zxBh56jKE6AXhiUoktY6cOHPUTyqXWbI/Pyh5sSC5B4%3D' (2024-12-04)
  → 'github:astro/microvm.nix/5f0ab7953380a565c4e02083669bc529036970c7?narHash=sha256-k1g5MbTrURnYeb2XPwz3uLLKZJon7khTig2KvGv5pgs%3D' (2024-12-05)
• Updated input 'microvm/spectrum':
    'git+https://spectrum-os.org/git/spectrum?ref=refs/heads/main&rev=f1d94ee7029af18637dbd5fdf4749621533693fa' (2024-10-26)
  → 'git+https://spectrum-os.org/git/spectrum?ref=refs/heads/main&rev=80c9e9830d460c944c8f730065f18bb733bc7ee2' (2024-12-04)
• Updated input 'nixos-hardware':
    'github:NixOS/nixos-hardware/cceee0a31d2f01bcc98b2fbd591327c06a4ea4f9?narHash=sha256-fc6jTzIwCIVWTX50FtW6AZpuukuQWSEbPiyg6ZRGWFY%3D' (2024-12-03)
  → 'github:NixOS/nixos-hardware/2297628136baca35c0a49df29f2407034708b5eb?narHash=sha256-Mk7mV9N6En3%2BQZ%2B/9y29EZRzoJ%2BZoNU%2Bt8jPGzM%2Bdrc%3D' (2024-12-06)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/55d15ad12a74eb7d4646254e13638ad0c4128776?narHash=sha256-M1%2BuCoV5igihRfcUKrr1riygbe73/dzNnzPsmaLCmpo%3D' (2024-12-03)
  → 'github:nixos/nixpkgs/d0797a04b81caeae77bcff10a9dde78bc17f5661?narHash=sha256-kEsTJTUQfQFIJOcLYFt/RvNxIK653ZkTBIs4DG%2BcBns%3D' (2024-12-05)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/ba5ed0362eaae83fe8925a2d5cfcf356ff22f70f?narHash=sha256-Zlas3LFqrW8bVVrZYgkzS4VNkZgtZ/hsbYhO0GtKLys%3D' (2024-12-05)
  → 'github:oxalica/rust-overlay/020701e6057992329a7cfafc6e3c5d5658bbcf79?narHash=sha256-eh2i2GtqdWVOP7yjiWtB8FMUWktCZ4vjo81n6g5mSiE%3D' (2024-12-06)
• Updated input 'treefmt-nix':
    'github:numtide/treefmt-nix/49717b5af6f80172275d47a418c9719a31a78b53?narHash=sha256-JIPcz1PrpXUCbaccEnrcUS8jjEb/1vJbZz5KkobyFdM%3D' (2024-12-03)
  → 'github:numtide/treefmt-nix/50862ba6a8a0255b87377b9d2d4565e96f29b410?narHash=sha256-qKL3vjO%2BIXFQ0nTinFDqNq/sbbnnS5bMI1y0xX215fU%3D' (2024-12-05)
2024-12-06 11:38:39 +01:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules emacs: Fix auto-mode for org-mode, add jujutsu to vc root markers 2024-12-02 14:49:58 +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 mimir: Remove address from enp5s0f1 2024-12-04 14:24:40 +01:00
modules Set up Bluesky PDS 2024-12-03 23:41:09 +01:00
overlays Set up Bluesky PDS 2024-12-03 23:41:09 +01:00
pkgs Set up Bluesky PDS 2024-12-03 23:41:09 +01:00
users Updated fonts, remove SuperSlicer 2024-12-02 23:43:16 +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 Set up Bluesky PDS 2024-12-03 23:41:09 +01:00
flake.lock Update: flake.lock 2024-12-06 11:38:39 +01:00
flake.nix Set up Bluesky PDS 2024-12-03 23:41:09 +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