dotfiles/nixos/modules/nix-flakes.nix
2021-02-05 11:53:30 +01:00

13 lines
251 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
{ config, ... }:
{
nix = let
nix = nixpkgs-master.nixFlakes;
in {
package = nix;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
}