hm/porcorosso-wsl: add nixpkgs to NIX_PATH

This commit is contained in:
Luke Granger-Brown 2022-03-03 16:25:34 +00:00
parent 080577e0f3
commit 610d5ccf40

View file

@ -2,8 +2,14 @@
{
imports = [ ./graphical-client-wayland.nix ];
config.programs.keychain = {
enable = true;
keys = [ "id_ed25519" ];
config = {
programs.keychain = {
enable = true;
keys = [ "id_ed25519" ];
};
home.sessionVariables = {
NIX_PATH = "nixpkgs=/home/lukegb/depot/third_party/nixpkgs";
};
};
}