mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-11 02:56:27 +00:00
25 lines
430 B
Nix
25 lines
430 B
Nix
{
|
|
username,
|
|
osConfig,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
stateVersion = osConfig.system.stateVersion;
|
|
inherit username;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.anyrun.homeManagerModules.default
|
|
./programs/neovide.nix
|
|
# ./default-apps.nix
|
|
./packages
|
|
./programs
|
|
./services
|
|
./theme/md3-evo.nix
|
|
./desktops/hyprland
|
|
];
|
|
}
|