fix: allow unfree packages to resolve VS Code build failure

- Add 'nixpkgs.config.allowUnfree = true' to core/system/default.nix for global NixOS configuration.
- Add 'nixpkgs.config.allowUnfree = true' to features/default.nix for Home Manager package set.
- This resolves evaluation errors when VS Code is included in the build.
This commit is contained in:
Bernardo Magri
2026-04-12 22:48:44 +01:00
parent 5f0834f30c
commit b3fb246ce3
2 changed files with 4 additions and 0 deletions

View File

@@ -19,4 +19,6 @@
];
time.timeZone = lib.mkDefault config.nomarchy.system.timezone;
nixpkgs.config.allowUnfree = true;
}