summaryrefslogtreecommitdiff
path: root/machines/iso/configuration.nix
blob: 29b429a0112190b96e2e8bfa86ce2a07cfb20284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ ... }: {
  imports = [
    ./hardware-configuration.nix
  ];
  nixpkgs = {
    config.allowUnfree = true;
  };
  nix = {
    settings.experimental-features = ["nix-command" "flakes"];
    extraOptions = "experimental-features = nix-command flakes";
  };
  networking.hostName = "iso";
}