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.
35 lines
438 B
Nix
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
|
|
]);
|
|
}
|