summaryrefslogtreecommitdiff
path: root/nixosConfigurations/yavanna
diff options
context:
space:
mode:
Diffstat (limited to 'nixosConfigurations/yavanna')
-rw-r--r--nixosConfigurations/yavanna/default.nix31
1 files changed, 6 insertions, 25 deletions
diff --git a/nixosConfigurations/yavanna/default.nix b/nixosConfigurations/yavanna/default.nix
index 908b6d3..ba298f8 100644
--- a/nixosConfigurations/yavanna/default.nix
+++ b/nixosConfigurations/yavanna/default.nix
@@ -14,38 +14,19 @@ with lib; {
# ipfs.enable = true;
};
- boot = {
- loader.grub = {
- enable = true;
- device = "/dev/sda";
- };
-
- # NOTE This is probably not required, but I cannot test this out without
- # risking "bricking" my VPS because Kimsufi/OVH doesn't provide a console
- # access. This configuration was generated via nixos-infect[1] and at the
- # time I didn't bother to test for loaded kernel modules and just left the
- # automatically (IIRC) generated `hardware-configuration.nix' as is.
- #
- # There's, however, no indication that any NVME drives are being used and,
- # as the matter of fact, the VPS itself is on KVM, so... I'm still not going
- # to risk it, though.
- #
- # [1]: https://github.com/elitak/nixos-infect
- initrd.availableKernelModules = ["nvme"];
+ boot.loader.grub = {
+ enable = true;
+ device = "/dev/sda";
+ configurationLimit = 5;
};
fileSystems."/" = {
- device = "/dev/sda1";
+ device = "/dev/sda2";
fsType = "ext4";
options = ["noatime"];
};
- swapDevices = [
- {
- device = "/swapfile";
- size = 4 * 1024;
- }
- ];
+ swapDevices = [{device = "/dev/sda3";}];
zramSwap = {
enable = true;