9 lines
145 B
Nix
9 lines
145 B
Nix
{config, ...}: {
|
|
imports = [
|
|
../../../../user
|
|
];
|
|
|
|
home.username = "ahnwuoa";
|
|
home.homeDirectory = "/home/${config.home.username}";
|
|
}
|