nixfiles/hosts/macmini/default.nix
ChaotiCryptidz 822cf0e67a
try dev
2022-03-09 19:48:01 +00:00

16 lines
234 B
Nix

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