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

18 lines
325 B
Nix

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