44 lines
482 B
Nix
44 lines
482 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
# Dev apps
|
|
../git.nix
|
|
../shell.nix
|
|
../neovim
|
|
../ssh.nix
|
|
|
|
# Base languages that should always be available
|
|
./nix.nix
|
|
./lua.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# System
|
|
htop
|
|
btop
|
|
neofetch
|
|
killall
|
|
|
|
# Files
|
|
zip
|
|
xz
|
|
unzip
|
|
p7zip
|
|
file
|
|
tree
|
|
ranger
|
|
|
|
# Networking
|
|
dnsutils
|
|
inetutils
|
|
socat
|
|
httpie
|
|
|
|
# Other
|
|
jq
|
|
|
|
# Dev helpers
|
|
direnv
|
|
];
|
|
}
|