From 41ab997c3a198338dcdc13298fdf6df887212a0d Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 5 Jan 2025 19:01:11 +0800 Subject: [PATCH] apps/run-workflow-with-vm: set to allow unfree in nixpkgs config --- apps/run-workflow-with-vm/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/run-workflow-with-vm/configuration.nix b/apps/run-workflow-with-vm/configuration.nix index d8c0c1bf..6d0ea257 100644 --- a/apps/run-workflow-with-vm/configuration.nix +++ b/apps/run-workflow-with-vm/configuration.nix @@ -47,6 +47,8 @@ import { ]; config = { + nixpkgs.config.allowUnfree = true; + # Enable the display manager of choice. services.displayManager.enable = true; services.xserver.displayManager.gdm.enable = true;