diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-05-28 02:25:07 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-05-28 02:25:07 -0600 |
| commit | 71c518fee104fdf1e31b01073af83ee3101332af (patch) | |
| tree | 43e5ac812e0108838eae218c427e5e937f8bb0f4 /machines/iso | |
| parent | edd47d163dc7473bfe098a7fc0926cc0b11640c4 (diff) | |
making config for live iso
Diffstat (limited to 'machines/iso')
| -rw-r--r-- | machines/iso/configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/machines/iso/configuration.nix b/machines/iso/configuration.nix new file mode 100644 index 0000000..ee400d3 --- /dev/null +++ b/machines/iso/configuration.nix @@ -0,0 +1,10 @@ +{ ... }: { + nixpkgs = { + config.allowUnfree = true; + }; + nix = { + settings.experimental-features = ["nix-command" "flakes"]; + extraOptions = "experimental-features = nix-command flakes"; + }; + networking.hostName = "iso"; +} |
