flake/modules/home/default.nix
2024-09-14 14:30:04 +00:00

16 lines
303 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}";
}