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