16 lines
234 B
Nix
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
|
|
];
|
|
};
|
|
|
|
}
|