darwin homebase

This commit is contained in:
ChaotiCryptidz 2022-03-09 19:45:14 +00:00
parent 1de748aef8
commit 19003d5e11
No known key found for this signature in database

View file

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