14 lines
275 B
Nix
14 lines
275 B
Nix
{ pkgs, depot, lib, config, ... }:
|
|
{
|
|
imports = [ ./graphical-client-wayland.nix ./ext.nix ];
|
|
|
|
config = {
|
|
programs.keychain = {
|
|
enable = true;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
NIX_PATH = "nixpkgs=/home/lukegb/depot/third_party/nixpkgs";
|
|
};
|
|
};
|
|
}
|