pantheon/modules/nixos/system/nix-config.nix

16 lines
249 B
Nix

{ config, ... }:
{
config = {
nixpkgs.config.allowUnfree = true;
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
"pipe-operators"
];
trusted-users = [ "@wheel" ];
};
};
}