11 lines
259 B
Nix
11 lines
259 B
Nix
{ stateVersion, username, ... }:
|
|
{
|
|
home.stateVersion = stateVersion;
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
fonts.fontconfig.enable = true;
|
|
imports = [
|
|
./base.nix
|
|
../nixos/includes/system/overlay.nix
|
|
];
|
|
}
|