dot.nix/home/users/cesar/default.nix

18 lines
365 B
Nix

{
lib,
hostSpec,
pkgs,
...
}:
{
imports = [
(lib.custom.relativeToRoot "home/global/core")
(lib.optionalAttrs (!hostSpec.isServer) ./theme)
(lib.custom.relativeToRoot "home/hosts/${hostSpec.hostName}")
];
home.sessionVariables = {
EDITOR = "${lib.getExe pkgs.microsoft-edit}";
VISUAL = "${lib.getExe pkgs.microsoft-edit}";
};
}