mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-11 02:56:27 +00:00
18 lines
433 B
Nix
18 lines
433 B
Nix
{ username, desktop, stateVersion, osConfig, inputs, ... }: rec {
|
|
home = {
|
|
inherit username stateVersion;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
imports = [
|
|
inputs.ags.homeManagerModules.default
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.anyrun.homeManagerModules.default
|
|
./clean-home-dir.nix
|
|
./programs/neovide.nix
|
|
./packages
|
|
./programs
|
|
./services
|
|
./desktops/${desktop}
|
|
];
|
|
}
|