Files
dot/newnix/modules/home/dev.nix
2026-02-06 20:51:39 +01:00

15 lines
202 B
Nix

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