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

• Removed input 'atuin'
• Removed input 'atuin/fenix'
• Removed input 'atuin/fenix/nixpkgs'
• Removed input 'atuin/fenix/rust-analyzer-src'
• Removed input 'atuin/flake-compat'
• Removed input 'atuin/flake-utils'
• Removed input 'atuin/nixpkgs'
• Updated input 'emacs-overlay':
    'github:nix-community/emacs-overlay/aad34633f2b567583651ff6b7614026a4b7b58a3?narHash=sha256-dXo8MrjqUKkJpHDnpOyt7OYh9nKee56BXnhmNHTZJuI%3D' (2024-08-12)
  → 'github:nix-community/emacs-overlay/aa3997dd78a00dec18e4d22f6073f78778c75301?narHash=sha256-jniQno8FCotJ0OUSxd43Zl5q0UsKbKvrtATduvrhO2g%3D' (2024-08-13)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/5e0ca22929f3342b19569b21b2f3462f053e497b?narHash=sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI%3D' (2024-08-09)
  → 'github:nixos/nixpkgs/a58bc8ad779655e790115244571758e8de055e3d?narHash=sha256-dFZRVSgmJkyM0bkPpaYRtG/kRMRTorUIDj8BxoOt1T4%3D' (2024-08-11)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/65e3dc0fe079fe8df087cd38f1fe6836a0373aad?narHash=sha256-4x/32xTCd%2BxCwFoI/kKSiCr5LQA2ZlyTRYXKEni5HR8%3D' (2024-08-12)
  → 'github:oxalica/rust-overlay/4ee3d9e9569f70d7bb40f28804d6fe950c81eab3?narHash=sha256-nHdKymsHCVIh0Wdm4MvSgxcTTg34FJIYHRQkQYaSuvk%3D' (2024-08-13)
• Updated input 'sops':
    'github:Mic92/sops-nix/ab2d1ffeb5b85da2f6537beb2fe05da54276c261?narHash=sha256-Zhcf1TMDYb0BxDHKhEKCKFb1qi2vwlX0BgJPwk9Gd3E%3D' (2024-08-12)
  → 'github:Mic92/sops-nix/be0eec2d27563590194a9206f551a6f73d52fa34?narHash=sha256-N9IcHgj/p1%2B2Pvk8P4Zc1bfrMwld5PcosVA0nL6IGdE%3D' (2024-08-12)
2024-08-13 11:38:49 +02:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules sway: Fix swayidle command generation 2024-08-05 14:26:59 +02:00
lib Remove unused input 2024-04-24 14:46:49 +02:00
machines frigate: Update IP address of doorbell camera 2024-08-05 14:26:40 +02:00
modules keycloak: Update plugins 2024-07-25 10:39:02 +02:00
overlays overlay: Remove Python override 2024-08-05 14:28:16 +02:00
pkgs Change all sha256 attributes to SRI-hashes 2024-07-09 21:33:26 +02:00
users home/work: Update ffmpeg 2024-08-05 14:27:19 +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 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 read: init container 2024-07-15 23:41:19 +02:00
flake.lock flake.lock: Update 2024-08-13 11:38:49 +02:00
flake.nix Remove obsolete and unused packages 2024-07-09 21:33:25 +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