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

30 lines
366 B
Nix
Raw Normal View History

{ pkgs
2019-01-28 15:55:14 +01:00
, config,
... }:
let
in {
imports = [
../profiles/common.nix
../profiles/nix-channels.nix
../programs/neovim.nix
../programs/zsh.nix
];
nixpkgs.config = {
packageOverrides = pkgs: with pkgs; {
};
};
home.sessionVariables = {
};
home.packages = []
++ (with pkgs; [
iperf3
telnet
speedtest-cli
]);
}