17 lines
171 B
Nix
Executable file
17 lines
171 B
Nix
Executable file
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
|
|
home = {
|
|
username = "plank";
|
|
homeDirectory = "/home/plank";
|
|
};
|
|
}
|