flake/modules/home/default.nix
2024-07-13 22:28:27 +00:00

16 lines
305 B
Nix

{ pkgs, lib, config, osConfig, ... }: let
cfg = osConfig.mods;
in {
imports = [
./terminal
./desktop
./xdg.nix
];
# Let Home Manager install and manage itself
programs.home-manager.enable = true;
home.username = cfg.user.name;
home.homeDirectory = "/home/${cfg.user.name}";
}