Last fix on darwin new structure

This commit is contained in:
Laurent Gueret
2026-02-11 16:00:40 +01:00
parent e3e63a800b
commit 7aaedb5ffa
30 changed files with 97 additions and 96 deletions
+7 -17
View File
@@ -1,9 +1,9 @@
{ import-tree, ... }:
{
home-manager.users.alistreaza = {
imports = [
(import-tree ../../common)
(import-tree ../../../modules/home/common)
(import-tree ../../../modules/home/darwin)
];
home = {
@@ -12,21 +12,11 @@
};
# Shell apps
home.shell.zsh = true;
home.shell.git = true;
home.shell.neovim = true;
home.shell.nh.enable = true;
home.shell.devenv.enable = true;
# Homebrew apps
home.homebrew.iterm = true;
home.homebrew.zed = true;
home.homebrew.jetbrain = true;
home.homebrew.iina = true;
home.homebrew.zen = true;
home.homebrew.obsidian = true;
home.homebrew.microsoft = true;
home.homebrew.keka = true;
user.shell.zsh.enable = true;
user.shell.git.enable = true;
user.shell.neovim.enable = true;
user.shell.nh.enable = true;
user.shell.devenv.enable = true;
# No Home Application Folders
targets.darwin.linkApps.enable = false;
+10
View File
@@ -2,6 +2,16 @@
{
nixpkgs.hostPlatform = "aarch64-darwin";
# Homebrew apps
os.homebrew.iterm.enable = true;
os.homebrew.zed.enable = true;
os.homebrew.jetbrain.enable = true;
os.homebrew.iina.enable = true;
os.homebrew.zen.enable = true;
os.homebrew.obsidian.enable = true;
os.homebrew.microsoft.enable = true;
os.homebrew.keka.enable = true;
# System version
system.stateVersion = "25.11";
}