9 lines
110 B
Nix
9 lines
110 B
Nix
{ primaryUser, ... }:
|
|
{
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
home.homeDirectory = "/home/${primaryUser}";
|
|
}
|