mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
20 lines
488 B
Nix
20 lines
488 B
Nix
{ username, desktop, stateVersion, osConfig, inputs, ... }: {
|
|
home = {
|
|
stateVersion = osConfig.system.stateVersion;
|
|
inherit username;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
imports = [
|
|
inputs.ags.homeManagerModules.default
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.anyrun.homeManagerModules.default
|
|
./clean-home-dir.nix
|
|
./programs/neovide.nix
|
|
# ./default-apps.nix
|
|
./packages
|
|
./programs
|
|
./services
|
|
./desktops/hyprland
|
|
];
|
|
}
|