From 694ca4a85f8203be53b12ee553601d461465fe34 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 7 Mar 2020 15:17:04 +0000 Subject: [PATCH] Ensure socrates/default.nix is a function Nix complains that `nixos.socrates` is not a function but a set. By adding `{ ... }:` to the top of the file, I'm hoping to change it from a set to a function. --- nixos/socrates/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/socrates/default.nix b/nixos/socrates/default.nix index 63ff1b342..fbdff3f50 100644 --- a/nixos/socrates/default.nix +++ b/nixos/socrates/default.nix @@ -1,3 +1,5 @@ +{ ... }: + let # TODO(wpcarro): Instead of importing these dependencies as parameters that # readTree will expose I need to import these dependencies manually because