summaryrefslogtreecommitdiff
path: root/configurations/varda
diff options
context:
space:
mode:
Diffstat (limited to 'configurations/varda')
-rw-r--r--configurations/varda/default.nix45
1 files changed, 11 insertions, 34 deletions
diff --git a/configurations/varda/default.nix b/configurations/varda/default.nix
index ac7b493..5e0914e 100644
--- a/configurations/varda/default.nix
+++ b/configurations/varda/default.nix
@@ -7,41 +7,11 @@ with lib; {
nixfiles.modules = {
wireguard.client.enable = true;
- # games.minecraft.server = {
- # enable = true;
- # memory = "6G";
- # };
-
acme.enable = true;
- };
-
- networking = let
- interface = "eth0";
- in {
- interfaces.${interface} = {
- ipv4.addresses = [
- {
- inherit (this.ipv4) address;
- prefixLength = 22;
- }
- ];
-
- ipv6.addresses = [
- {
- inherit (this.ipv6) address;
- prefixLength = 64;
- }
- ];
- };
-
- defaultGateway = {
- inherit interface;
- address = this.ipv4.gateway;
- };
- defaultGateway6 = {
- inherit interface;
- address = this.ipv6.gateway;
+ games.minecraft.server = {
+ enable = false; # Disabled because no one is playing now.
+ memory = "6G";
};
};
@@ -55,7 +25,14 @@ with lib; {
};
};
- initrd.availableKernelModules = ["ata_piix" "sd_mod" "sr_mod" "uhci_hcd" "virtio_pci" "virtio_scsi"];
+ initrd.availableKernelModules = [
+ "ata_piix"
+ "sd_mod"
+ "sr_mod"
+ "uhci_hcd"
+ "virtio_pci"
+ "virtio_scsi"
+ ];
};
fileSystems = {