mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 20:40:24 +01:00
18 lines
278 B
Nix
18 lines
278 B
Nix
{
|
|
mylib,
|
|
myvars,
|
|
...
|
|
}:
|
|
{
|
|
home.homeDirectory = "/Users/${myvars.username}";
|
|
imports = (mylib.scanPaths ./.) ++ [
|
|
../base/core
|
|
../base/tui
|
|
../base/gui
|
|
../base/home.nix
|
|
];
|
|
|
|
# enable management of XDG base directories on macOS.
|
|
xdg.enable = true;
|
|
}
|