summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2020-10-18 16:13:07 +0200
committerDaiderd Jordan <daiderd@gmail.com>2020-10-21 18:30:57 +0200
commit1741ab18a64316a95d6ce21bde51b84753b32731 (patch)
treeca0fe95ab3df4fa1c1b5ee9d021fc5d1b8a09f48 /modules/examples
parent46198ef432216a22e1cd16edf55b0f219b8e2387 (diff)
add workaround for flake test on github actions
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/flake.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/examples/flake.nix b/modules/examples/flake.nix
index 90b0939..731bb2e 100644
--- a/modules/examples/flake.nix
+++ b/modules/examples/flake.nix
@@ -11,6 +11,9 @@
let
configuration = { pkgs, ... }: {
nix.package = pkgs.nixFlakes;
+
+ # FIXME: for github actions, this shouldn't be in the example.
+ services.nix-daemon.enable = true;
};
in
{