about summary refs log tree commit diff
path: root/configurations/yavanna
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2022-12-17 16:39:09 +0300
committerAzat Bahawi <azat@bahawi.net>2022-12-17 16:39:09 +0300
commit8f137c28230623259a964484adcf31fe00756594 (patch)
tree82bce6a13fda125087cf6d9dc80aa91d9230d6c4 /configurations/yavanna
parent2022-11-20 (diff)
2022-12-17
Diffstat (limited to 'configurations/yavanna')
-rw-r--r--configurations/yavanna/default.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/configurations/yavanna/default.nix b/configurations/yavanna/default.nix
deleted file mode 100644
index e3172a6..0000000
--- a/configurations/yavanna/default.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{
-  lib,
-  this,
-  ...
-}:
-with lib; {
-  nixfiles.modules = {
-    wireguard.client.enable = true;
-
-    syncthing.enable = true;
-
-    acme.enable = true;
-
-    rtorrent.enable = true;
-  };
-
-  boot = {
-    loader.grub = {
-      enable = true;
-      device = "/dev/sda";
-    };
-
-    initrd = {
-      availableKernelModules = ["uhci_hcd" "ahci"];
-      kernelModules = ["nvme"];
-    };
-  };
-
-  fileSystems."/" = {
-    device = "/dev/sda1";
-    fsType = "ext4";
-    options = ["noatime"];
-  };
-
-  swapDevices = [
-    {
-      device = "/swapfile";
-      size = 4 * 1024;
-    }
-  ];
-
-  zramSwap = {
-    enable = true;
-    memoryPercent = 25;
-  };
-}

Consider giving Nix/NixOS a try! <3