Files
nix/home/modules/docker/default.nix

10 lines
89 B
Nix

{ pkgs, ... }:
{
config = {
home.packages = with pkgs; [
dive
];
};
}