diff options
author | Ben Sima <ben@bsima.me> | 2020-11-16 11:47:36 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-16 11:47:36 -0500 |
commit | 656816ed9af6277bbeb1c5e74471bace3a78e5be (patch) | |
tree | 8d9b28d4a804fdb258f17b32e675bf9a4dcf8a98 /Biz/Cloud/Hardware.nix | |
parent | eb3ee6f1867eb19d2a262826038b2615b3def762 (diff) |
get build working and capitalize more files
Diffstat (limited to 'Biz/Cloud/Hardware.nix')
-rw-r--r-- | Biz/Cloud/Hardware.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Biz/Cloud/Hardware.nix b/Biz/Cloud/Hardware.nix new file mode 100644 index 0000000..20eab30 --- /dev/null +++ b/Biz/Cloud/Hardware.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + boot.loader.grub.device = "/dev/vda"; + fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; + swapDevices = [ + { device = "/swapfile"; } # 4GB + ]; +} |