nixfiles/hosts/macmini/default.nix

19 lines
326 B
Nix
Raw Normal View History

2022-03-09 19:45:14 +00:00
{ pkgs, tree, ... }: {
users.users.chaos = {
name = "chaos";
home = "/Users/chaos";
};
home-manager.users.chaos = {
2022-03-09 20:16:30 +00:00
packages.zsh.extraEnv = ''
export PATH=/run/current-system/sw/bin:$PATH
'';
2022-03-09 19:45:14 +00:00
imports = with tree;
[
# NOINLINE
home.base
2022-03-09 19:48:01 +00:00
home.dev
2022-03-09 19:45:14 +00:00
];
};
}