14 lines
502 B
Nix
14 lines
502 B
Nix
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|||
|
# and may be overwritten by future invocations. Please make changes
|
|||
|
# to /etc/nixos/configuration.nix instead.
|
|||
|
{ config, lib, pkgs, modulesPath, ... }:
|
|||
|
|
|||
|
{
|
|||
|
imports = [ (toString ../base) "${import ../../nixpkgs-path.nix}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" ];
|
|||
|
|
|||
|
config = {
|
|||
|
hardware.video.hidpi.enable = lib.mkDefault true;
|
|||
|
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
|
|||
|
};
|
|||
|
}
|