Files
nixos-blueprint/modules/shared/user/common.nix
T
unexplrd c11eeb9d20 restructure
Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-11-27 14:33:33 +02:00

15 lines
296 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"];
}