nixfiles/hosts/macmini/default.nix

20 lines
385 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 = {
2022-03-09 20:18:00 +00:00
programs.zsh.envExtra = ''
2022-03-09 20:17:02 +00:00
export PATH=/run/current-system/sw/bin:$PATH
2022-03-09 20:16:30 +00:00
'';
2022-03-09 20:17:02 +00:00
imports = with tree; [
# NOINLINE
home.base
home.dev
2022-03-09 20:22:39 +00:00
home.programming.editors.vscode
home.programming.languages.nix
2022-03-09 20:17:02 +00:00
];
2022-03-09 19:45:14 +00:00
};
}