Files
nixos-blueprint/hosts/dunamis/users/user/common.nix
2025-05-06 00:17:38 +03:00

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;
}