mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
24 lines
385 B
Nix
Executable File
24 lines
385 B
Nix
Executable File
{
|
|
username,
|
|
osConfig,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
inherit (osConfig.system) stateVersion;
|
|
inherit username;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
./programs/nixvim/presets
|
|
./programs/neovide.nix
|
|
./packages
|
|
./programs
|
|
./services
|
|
./theme/md3-evo.nix
|
|
./desktops/hyprland
|
|
];
|
|
}
|