2022-02-27 19:32:48 +00:00
|
|
|
{ pkgs, depot, lib, config, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./graphical-client-wayland.nix ];
|
2022-02-27 19:44:48 +00:00
|
|
|
|
2022-03-03 16:25:34 +00:00
|
|
|
config = {
|
|
|
|
programs.keychain = {
|
|
|
|
enable = true;
|
2022-05-17 00:37:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
programs.bash = {
|
|
|
|
initExtra = lib.mkBefore ''
|
|
|
|
if [[ ! -v INSIDE_GENIE ]]; then
|
|
|
|
echo "Starting genie:"
|
|
|
|
exec /usr/bin/genie -s
|
|
|
|
fi
|
|
|
|
'';
|
2022-03-03 16:25:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
}
|