infra/nix/home-manager/configuration/text-minimal.nix
2023-11-23 17:52:21 +01:00

13 lines
196 B
Nix

{pkgs, ...}: {
imports = [
../profiles/common.nix
../programs/neovim.nix
# ../programs/zsh.nix
];
home.packages = with pkgs; [
iperf3
inetutils
speedtest-cli
];
}