nixfiles/hosts/macmini/default.nix
ChaotiCryptidz bef0189316
sin tax
2022-03-09 20:17:02 +00:00

18 lines
310 B
Nix

{ pkgs, tree, ... }: {
users.users.chaos = {
name = "chaos";
home = "/Users/chaos";
};
home-manager.users.chaos = {
packages.zsh.extraEnv = ''
export PATH=/run/current-system/sw/bin:$PATH
'';
imports = with tree; [
# NOINLINE
home.base
home.dev
];
};
}