diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-07T15·17+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-07T16·17+0000 |
commit | 694ca4a85f8203be53b12ee553601d461465fe34 (patch) | |
tree | ab2ce07e56cc9ed2891210e78b324d779a753a48 /nixos/socrates | |
parent | 5ba3f2b572f1ed7648d6dd9b0f0e811ef3cdcc4c (diff) |
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.
Diffstat (limited to 'nixos/socrates')
-rw-r--r-- | nixos/socrates/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/socrates/default.nix b/nixos/socrates/default.nix index 63ff1b342068..fbdff3f50f6b 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 |