Files
dot/newnix/modules/home/dev.nix
2026-02-06 21:41:49 +01:00

14 lines
187 B
Nix

{ config, pkgs, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
home.packages = with pkgs; [
visidata
];
}