nixfiles/hosts/macmini/default.nix

15 lines
217 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 = {
imports = with tree;
[
# NOINLINE
home.base
];
};
}