Files
nixos-config/home/common/programs/dev.nix
T
2025-11-19 07:46:40 +00:00

45 lines
531 B
Nix

{
lib,
config,
pkgs,
...
}:
{
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
};
home.packages = with pkgs; [
imagemagick
doctl
inotify-tools
devenv
bruno
zed-editor
sshfs
coturn
file
usbutils
nmap
lsof
ktlint
croc
# typst
typst
typstyle
];
programs.tmux = {
enable = true;
extraConfig = ''
setw -g mouse on
set -s extended-keys on
'';
};
}