dotfiles/nixos/modules/nix-flakes.nix
2020-12-26 23:58:39 +01:00

12 lines
176 B
Nix

{ config, pkgs, ... }:
{
nix = let
nix = pkgs.nixFlakes;
in {
package = nix;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
}