12 lines
154 B
Nix
12 lines
154 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
username = "cdreyes";
|
|
homeDirectory = "/Users/cdreyes";
|
|
};
|
|
my = import ./toggles.nix { inherit inputs; };
|
|
}
|