Files
Nomarchy/core/system/default.nix
Bernardo Magri b3fb246ce3 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.
2026-04-12 22:48:44 +01:00

25 lines
450 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./options.nix
./state.nix
./systemd.nix
./virtualization.nix
./fonts.nix
./hardware.nix
./audio.nix
./bluetooth.nix
./network.nix
./impermanence.nix
./browser.nix
./makima.nix
../../themes/engine/plymouth.nix
../../themes/engine/sddm.nix
];
time.timeZone = lib.mkDefault config.nomarchy.system.timezone;
nixpkgs.config.allowUnfree = true;
}