12 lines
311 B
Nix
12 lines
311 B
Nix
{ stateVersion, username, inputs, ... }:
|
|
{
|
|
home.stateVersion = stateVersion;
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
fonts.fontconfig.enable = true;
|
|
imports = [
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
./base.nix
|
|
../nixos/includes/system/overlay.nix
|
|
];
|
|
}
|