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

• Updated input 'disko':
    'github:nix-community/disko/b09eb605e376c9e95c87c0ef3fcb8008e11c8368?narHash=sha256-L2h46/z8WExNvtCEdZ8YuMu5TwfAGsKXXgM7pyIShvs%3D' (2024-08-26)
  → 'github:nix-community/disko/b89a61129f3976d6440e2356ac5d3e30930f7012?narHash=sha256-K%2BHQbC2/hnGngIB019mX6f4XUrf7dB1eBfiUHW4Vx48%3D' (2024-08-27)
• Updated input 'emacs-overlay':
    'github:nix-community/emacs-overlay/e3e088ef4b4b187a54445f5767047a8257893093?narHash=sha256-L/g0Lcmr8gcmR3zvWf7ZyOPHKW0R6DMUSuKlU8CZw/w%3D' (2024-08-26)
  → 'github:nix-community/emacs-overlay/6c5563a26bd1369d05f0d9da0d0348ca9f41a643?narHash=sha256-eoW3oPT6jkS%2BkgcL5HgPigflWu/l57MhGlztR6ThFGc%3D' (2024-08-28)
• Updated input 'emacs-overlay/nixpkgs-stable':
    'github:NixOS/nixpkgs/797f7dc49e0bc7fab4b57c021cdf68f595e47841?narHash=sha256-Qb9MhKBUTCfWg/wqqaxt89Xfi6qTD3XpTzQ9eXi3JmE%3D' (2024-08-22)
  → 'github:NixOS/nixpkgs/2527da1ef492c495d5391f3bcf9c1dd9f4514e32?narHash=sha256-XROVLf9ti4rrNCFLr%2BDmXRZtPjCQTW4cYy59owTEmxk%3D' (2024-08-24)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/c374d94f1536013ca8e92341b540eba4c22f9c62?narHash=sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh%2BaRKoCdaAv5fiO0%3D' (2024-08-21)
  → 'github:nixos/nixpkgs/d0e1602ddde669d5beb01aec49d71a51937ed7be?narHash=sha256-pP3Azj5d6M5nmG68Fu4JqZmdGt4S4vqI5f8te%2BE/FTw%3D' (2024-08-24)
• Updated input 'pre-commit-hooks':
    'github:cachix/git-hooks.nix/c8a54057aae480c56e28ef3e14e4960628ac495b?narHash=sha256-9etXEOUtzeMgqg1u0wp%2BEdwG7RpmrAZ2yX516bMj2aE%3D' (2024-08-23)
  → 'github:cachix/git-hooks.nix/1cd12de659fab215624c630c37d1c62aa2b7824e?narHash=sha256-SzBtZs5z%2BYGM50oyt67R78qLhxG/wG5/SlVRsCF5kRc%3D' (2024-08-27)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/19b70f147b9c67a759e35824b241f1ed92e46694?narHash=sha256-ap2jIQi/FuUHR6HCht6ASWhoz8EiB99XmI8Esot38VE%3D' (2024-08-26)
  → 'github:oxalica/rust-overlay/6a1c4915dca7149e7258d8c7f3ac634d8c65f6c6?narHash=sha256-PvhVgQ1rm3gfhK7ts4emprhh/KMkFwXogmgsQ3srR7g%3D' (2024-08-28)
2024-08-28 09:22:50 +02:00
.forgejo/workflows Add Forgejo workflow to check flake 2024-01-25 12:42:14 +01:00
home-manager/modules emacs: Switch back to dark theme 2024-08-19 22:30:18 +02:00
lib Rearrange overlays 2024-08-19 22:30:30 +02:00
machines loki: Use new implementation of switch-to-configuration 2024-08-22 20:25:54 +02:00
modules keycloak: Update plugins 2024-08-26 09:31:49 +02:00
overlays overlay: Remove Python override 2024-08-05 14:28:16 +02:00
pkgs hassbridge: cleanup 2024-08-22 20:26:13 +02:00
users server: Disable nushell, bandwhich 2024-08-22 20:45:01 +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-28 09:22:50 +02:00
flake.nix Update pamedia input 2024-08-19 22:30:04 +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