39 lines
481 B
Nix
39 lines
481 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs = {
|
|
direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
imagemagick
|
|
doctl
|
|
aider-chat
|
|
inotify-tools
|
|
devenv
|
|
bruno
|
|
zed-editor
|
|
sshfs
|
|
coturn
|
|
file
|
|
usbutils
|
|
nmap
|
|
];
|
|
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
setw -g mouse on
|
|
set -s extended-keys on
|
|
'';
|
|
};
|
|
}
|