dotfiles/nix/nixos/modules/nix-flakes.nix
Richard Brežák 6cb9e4425f
Pin nixpkgs better
Signed-off-by: Richard Brežák <rbrezak@qualityunit.com>
2021-03-04 19:23:41 +01:00

13 lines
265 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 ca-references
'';
};
}