11 lines
220 B
Nix

{ config, pkgs, ... }:
{
users.users.jawz.packages = with pkgs; ([
expect # keep color when nom'ing
nix-output-monitor # autistic nix builds
nixfmt # linting
cachix # why spend time compiling?
]);
}