dotfiles/modules/cli/nix.nix

9 lines
144 B
Nix
Raw Normal View History

2021-09-11 13:18:27 +02:00
{ config, lib, pkgs, ... }:
{
2021-11-11 18:37:49 +01:00
nix.package = pkgs.nixUnstable;
2021-09-11 13:18:27 +02:00
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}