Compare commits

...

2 commits

Author SHA1 Message Date
Harald Hoyer
29e4ef307b • fix(nix): disable nixbuild.nix import for aarch64-darwin systems
- Commented out the nixbuild.nix import in both aarch64-darwin system configurations
  - Maintains consistent system configuration across darwin platforms
2025-12-03 16:25:35 +01:00
Harald Hoyer
270f3fe252 fix(nix): update system applications environment configuration
- Changed pathsToLink from string "/Applications" to list [ "/Applications" ] in system environment build
- Maintains consistent configuration format for environment paths
2025-12-03 16:25:27 +01:00
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ in
env = pkgs.buildEnv { env = pkgs.buildEnv {
name = "system-applications"; name = "system-applications";
paths = config.environment.systemPackages; paths = config.environment.systemPackages;
pathsToLink = "/Applications"; pathsToLink = [ "/Applications" ];
}; };
in in
lib.mkForce '' lib.mkForce ''

View file

@ -5,7 +5,7 @@ with lib.metacfg;
system.defaults.dock.autohide = false; system.defaults.dock.autohide = false;
imports = [ imports = [
./../../nixbuild.nix # ./../../nixbuild.nix
]; ];
homebrew = { homebrew = {

View file

@ -3,7 +3,7 @@
with lib.metacfg; with lib.metacfg;
{ {
imports = [ imports = [
./../../nixbuild.nix # ./../../nixbuild.nix
]; ];
homebrew = { homebrew = {