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

lastFile:modules/clan/home-profiles/flake-module.nix
This commit is contained in:
2026-01-14 14:01:33 +07:00
parent b2f3a18b21
commit ccd087b00b
9 changed files with 103 additions and 2 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;
}