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