This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
{ pkgs, lib, inputs, vars, ... }: with lib; {
|
|
home = {
|
|
inherit (vars) username homeDirectory;
|
|
language.base = vars.locale;
|
|
packages = with pkgs; [
|
|
home-manager
|
|
];
|
|
stateVersion = "23.05";
|
|
};
|
|
|
|
news = {
|
|
display = "silent";
|
|
json = lib.mkForce { };
|
|
entries = lib.mkForce [ ];
|
|
};
|
|
}
|