20 lines
396 B
Nix
20 lines
396 B
Nix
{tree, ...}: {
|
|
users.users.chaos = {
|
|
name = "chaos";
|
|
home = "/Users/chaos";
|
|
};
|
|
home-manager.users.chaos = {
|
|
programs.zsh.envExtra = ''
|
|
export PATH=/run/current-system/sw/bin:$PATH
|
|
'';
|
|
imports = with tree; [
|
|
# NOINLINE
|
|
home.base
|
|
home.dev
|
|
home.programming.editors.vscode
|
|
home.programming.languages.nix
|
|
home.apps.mpv
|
|
];
|
|
};
|
|
}
|