- 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.
25 lines
450 B
Nix
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;
|
|
}
|