infra/nix/home-manager/configuration/text-minimal.nix
Stefan Junker 522d7279bd nix: set NIX_PATH per device versions at buildtime
Previously all devices would have NIX_PATH set on the common verion file
defindd in *nix/variables/versions.nix*. Now NIX_PATH is populated with
the versions of the respective device.
2020-10-16 22:31:01 +02:00

35 lines
438 B
Nix

{ pkgs }:
let
zshCurried = import ../programs/zsh.nix { inherit pkgs; };
in
{ pkgs
, config
, ... }:
let
in {
imports = [
../profiles/common.nix
../profiles/nix-channels.nix
../programs/neovim.nix
zshCurried
];
nixpkgs.config = {
packageOverrides = pkgs: with pkgs; {
};
};
home.sessionVariables = {
};
home.packages = []
++ (with pkgs; [
iperf3
telnet
speedtest-cli
]);
}