9 lines
133 B
Nix
9 lines
133 B
Nix
|
{ common, ... }:
|
||
|
{
|
||
|
home = {
|
||
|
username = common.username;
|
||
|
homeDirectory = common.homeDir;
|
||
|
stateVersion = "24.05";
|
||
|
};
|
||
|
}
|