mob next [ci-skip] [ci skip] [skip ci]

lastFile:modules/clan/home-profiles/common-user/default.nix
This commit is contained in:
2026-01-14 13:36:16 +07:00
parent 22994975e5
commit b2f3a18b21
6 changed files with 95 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
{
osConfig,
pkgs,
lib,
username,
...
}:
{
home = {
inherit username;
homeDirectory = lib.mkForce "/home/${username}";
stateVersion = osConfig.system.stateVersion;
packages = with pkgs; [
libreoffice
element-desktop
brave
firefox
keepassxc
vlc
thunderbird
];
};
programs.home-manager.enable = true;
}