Add nix package config

This commit is contained in:
Michael Thomas 2022-01-17 03:26:57 +00:00
parent 89f16664c5
commit 6f365c4dab

8
modules/nix.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
nix.extraOptions = ''
experimental-features = nix-command
'';
# this is required until nix 2.4 is released
nix.package = pkgs.nixUnstable;
}