mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-26 03:11:32 +01:00
16 lines
218 B
Nix
16 lines
218 B
Nix
{
|
|
mylib,
|
|
myvars,
|
|
...
|
|
}: {
|
|
home.homeDirectory = "/Users/${myvars.username}";
|
|
imports =
|
|
(mylib.scanPaths ./.)
|
|
++ [
|
|
../base/core
|
|
../base/tui
|
|
../base/gui
|
|
../base/home.nix
|
|
];
|
|
}
|