18 lines
366 B
Nix
18 lines
366 B
Nix
{
|
|
inputs,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
imports = with inputs; [
|
|
nix-index-database.hmModules.nix-index
|
|
self.homeModules.desktop
|
|
self.homeModules.programs
|
|
];
|
|
inherit (osConfig) desktop;
|
|
home.stateVersion = osConfig.system.stateVersion;
|
|
home.sessionPath = ["$HOME/.local/bin"];
|
|
|
|
# TODO: remove when unbroken
|
|
stylix.targets.mako.enable = false;
|
|
}
|