nixfiles/hosts/macmini/default.nix
2022-03-09 19:45:14 +00:00

15 lines
217 B
Nix

{ pkgs, tree, ... }: {
users.users.chaos = {
name = "chaos";
home = "/Users/chaos";
};
home-manager.users.chaos = {
imports = with tree;
[
# NOINLINE
home.base
];
};
}