7 lines
112 B
Nix
7 lines
112 B
Nix
{ config, ... }:
|
|
{
|
|
home = {
|
|
username = "bun";
|
|
homeDirectory = "/home/${config.home.username}";
|
|
};
|
|
}
|