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

24 lines
445 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ pkgs, extraPackages ? [ ] }:
2022-10-31 11:04:38 +01:00
let zshCurried = import ../programs/zsh.nix { inherit pkgs; };
2022-10-31 11:04:38 +01:00
in { pkgs, config, ... }:
let
in {
imports = [
../profiles/common.nix
# ../profiles/nix-channels.nix
../programs/neovim.nix
zshCurried
];
2022-10-31 11:04:38 +01:00
nixpkgs.config = { packageOverrides = pkgs: with pkgs; { }; };
2022-10-31 11:04:38 +01:00
home.sessionVariables = { };
home.packages = extraPackages
2022-10-31 11:04:38 +01:00
++ (with pkgs; [ iperf3 inetutils speedtest-cli ]);
}