nix-config/home/zhuangzi/jeroboam.nix

20 lines
444 B
Nix
Raw Normal View History

{ configVars, ... }:
{
imports = [
# ======================= Hardware Configs ========================= #
# ======================= Required Configs ========================= #
/core
# ================ Host-specific Optional Configs ================== #
common/optional/desktop
common/optional/dev
];
home = {
username = configVars.username;
homeDirectory = "/home/${configVars.username}";
};
}