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

23 lines
457 B
Nix

{ pkgs, depot, lib, config, ... }:
{
imports = [ ./graphical-client-wayland.nix ];
config = {
programs.keychain = {
enable = true;
};
programs.bash = {
initExtra = lib.mkBefore ''
if [[ ! -v INSIDE_GENIE ]]; then
echo "Starting genie:"
exec /usr/bin/genie -s
fi
'';
};
home.sessionVariables = {
NIX_PATH = "nixpkgs=/home/lukegb/depot/third_party/nixpkgs";
};
};
}