infra/nix/home-manager/configuration/text-minimal.nix

14 lines
196 B
Nix
Raw Normal View History

{pkgs, ...}: {
imports = [
../profiles/common.nix
../programs/neovim.nix
# ../programs/zsh.nix
];
2023-11-23 17:52:21 +01:00
home.packages = with pkgs; [
iperf3
inetutils
speedtest-cli
];
}