diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2023-08-14 20:24:37 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2023-08-14 20:25:23 -0400 |
commit | 77689750997baa7c216862065b2ec3dbd4d63724 (patch) | |
tree | 1f614923aac1cf9db0db75ced1c8b8b6d1e8b48b /machines | |
parent | 7857ec66d7665a3e1dae21eac70500d9e97e39ed (diff) |
Fix deprecated options
Diffstat (limited to 'machines')
-rw-r--r-- | machines/dragon.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/machines/dragon.nix b/machines/dragon.nix index a264060..55be481 100644 --- a/machines/dragon.nix +++ b/machines/dragon.nix @@ -122,7 +122,7 @@ in { [ "ehci_pci" "ahci" "uhci_hcd" "xhci_pci" "usb_storage" "sd_mod" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - boot.tmpOnTmpfs = true; + boot.tmp.useTmpFs = true; fileSystems."/" = { device = "/dev/disk/by-label/nixos-ssd"; |