{ config , pkgs , lib , ... }: let toml = pkgs.formats.toml { }; lixPackageSet = pkgs.lixPackageSets.latest; in { nixpkgs.config = import ../config.nix; nix = { enable = true; # needed for "standalone" home-manager, conflicts with module package = lib.mkDefault lixPackageSet.lix; }; programs.direnv.nix-direnv.package = lixPackageSet.nix-direnv; programs.nix-init = { enable = true; settings = { maintainers = [ "alanpearce" ]; nixpkgs = ""; }; }; home.packages = with pkgs; [ cached-nix-shell nixd npins angrr nix-prefetch-scripts nix-update nix-tree common-updater-scripts nixpkgs-fmt nixpkgs-lint nixpkgs-review lixPackageSet.nix-fast-build ]; programs.emacs.extraPackages = epkgs: (with epkgs; [ nix-mode nix-update ]); programs.nixvim.plugins = { nix.enable = true; lsp.servers.nixd.enable = true; }; }