Add nix flake config

This commit is contained in:
Charlotte 🦝 Delenk 2022-01-14 10:26:37 +01:00
parent f2d0b1aba9
commit 50d902b04b
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5

View file

@ -1,5 +1,11 @@
{ ... }: {
{ pkgs, ... }: {
imports = [
./zfs.nix
];
nix = {
package = pkgs.nixUnstable; # or versioned attributes like nix_2_4
extraOptions = ''
experimental-features = nix-command flakes
'';
};
}