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

• Updated input 'flake-parts':
    'github:hercules-ci/flake-parts/506278e768c2a08bec68eb62932193e341f55c90?narHash=sha256-hgmguH29K2fvs9szpq2r3pz2/8cJd2LPS%2Bb4tfNFCwE%3D' (2024-11-01)
  → 'github:hercules-ci/flake-parts/205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9?narHash=sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c%3D' (2024-12-04)
• Updated input 'flake-parts/nixpkgs-lib':
    'cc2f280002.tar.gz?narHash=sha256-lXvH/vOfb4aGYyvFmZK/HlsNsr/0CVWlwYvo2rxJk3s%3D' (2024-11-01)
  → '5487e69da4.tar.gz?narHash=sha256-1qRH7uAUsyQI7R1Uwl4T%2BXvdNv778H0Nb5njNrqvylY%3D' (2024-12-01)
• Updated input 'home-manager':
    'github:nix-community/home-manager/bf23fe41082aa0289c209169302afd3397092f22?narHash=sha256-zFOtOaqjzZfPMsm1mwu98syv3y%2BjziAq5DfWygaMtLg%3D' (2024-12-02)
  → 'github:nix-community/home-manager/6c3a7a0b72c19ec994b85c57a1712d177bd809b2?narHash=sha256-o6wNhr1ONxMuBJUGC9v0hEjFdv5rN6XzHJEL/rQJLjA%3D' (2024-12-04)
• Updated input 'microvm':
    'github:astro/microvm.nix/e8d5f12b834a59187c7ec147a8952a0567f97939?narHash=sha256-ratU5qCcRuOojgPWM90gda4qrxukNqbyFi%2Bkan2Ln04%3D' (2024-11-30)
  → 'github:astro/microvm.nix/0ab757d2d3e3214b0034b00f9cc3dcdba0b8c563?narHash=sha256-zxBh56jKE6AXhiUoktY6cOHPUTyqXWbI/Pyh5sSC5B4%3D' (2024-12-04)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/ac35b104800bff9028425fec3b6e8a41de2bbfff?narHash=sha256-t4BBVpwG9B4hLgc6GUBuj3cjU7lP/PJfpTHuSqE%2Bcrk%3D' (2024-12-01)
  → 'github:nixos/nixpkgs/55d15ad12a74eb7d4646254e13638ad0c4128776?narHash=sha256-M1%2BuCoV5igihRfcUKrr1riygbe73/dzNnzPsmaLCmpo%3D' (2024-12-03)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/3458f7f946ba61d1a1069aedcc17d7b7616f23cd?narHash=sha256-nwvKoPi3S6XyliqBRuC%2B01QFF0k94ZOvnoZtbGi/ObM%3D' (2024-12-03)
  → 'github:oxalica/rust-overlay/4da5a80ef76039e80468c902f1e9f5c0eab87d96?narHash=sha256-NCNDAGPkdFdu%2BDLErbmNbavmVW9AwkgP7azROFFSB0U%3D' (2024-12-04)
2024-12-04 14:23:51 +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 Set up Bluesky PDS 2024-12-03 23:41:09 +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-04 14:23:51 +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