Dmitriy Holkin afc7423888 changes
2019-08-27 20:49:08 +00:00

11 lines
204 B
Nix

{ config, lib, pkgs, ... }: {
nixpkgs.config = {
allowUnfree = true;
};
nix = {
useSandbox = true;
autoOptimiseStore = config.deviceSpecific.isSSD;
optimise.automatic = true;
};
}