mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
17 lines
361 B
Nix
17 lines
361 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix = {
|
|
package = pkgs.nixUnstable;
|
|
settings = {
|
|
sandbox = true;
|
|
cores = 0;
|
|
trusted-users = [ "@wheel" ];
|
|
substituters = [ "https://cache.nixos.org/" ];
|
|
builders-use-substitutes = true;
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
};
|
|
};
|
|
}
|