depot/ops/nixos/lib/home-manager/porcorosso-wsl.nix

15 lines
275 B
Nix
Raw Normal View History

2022-02-27 19:32:48 +00:00
{ pkgs, depot, lib, config, ... }:
{
imports = [ ./graphical-client-wayland.nix ./ext.nix ];
2022-02-27 19:44:48 +00:00
config = {
programs.keychain = {
enable = true;
};
home.sessionVariables = {
NIX_PATH = "nixpkgs=/home/lukegb/depot/third_party/nixpkgs";
};
2022-02-27 19:44:48 +00:00
};
2022-02-27 19:32:48 +00:00
}