2018-11-03 11:45:40 +01:00
|
|
|
{ pkgs
|
|
|
|
, 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; [
|
2018-11-19 02:06:17 +01:00
|
|
|
iperf3
|
2018-11-03 11:45:40 +01:00
|
|
|
]);
|
|
|
|
}
|