about summary refs log tree commit diff
path: root/nixosConfigurations
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nixosConfigurations/eonwe/default.nix1
-rw-r--r--nixosConfigurations/yavanna/default.nix13
2 files changed, 14 insertions, 0 deletions
diff --git a/nixosConfigurations/eonwe/default.nix b/nixosConfigurations/eonwe/default.nix
index ac00d17..3db651e 100644
--- a/nixosConfigurations/eonwe/default.nix
+++ b/nixosConfigurations/eonwe/default.nix
@@ -25,6 +25,7 @@ with lib; {
     libvirtd.enable = true;
     qutebrowser.enable = true;
     mpd.enable = true;
+    ipfs.enable = true;
   };
 
   hm = {
diff --git a/nixosConfigurations/yavanna/default.nix b/nixosConfigurations/yavanna/default.nix
index 84d4493..145a872 100644
--- a/nixosConfigurations/yavanna/default.nix
+++ b/nixosConfigurations/yavanna/default.nix
@@ -8,6 +8,19 @@ with lib; {
     acme.enable = true;
 
     rtorrent.enable = true;
+
+    ipfs.enable = true;
+  };
+
+  # The /nix/var/nix/db/db.sqlite file is currently corrupt. This is technically
+  # fixable with a reinstall, but this system doesn't have a recovery mode
+  # access and I'm too lazy to redo everything with nixos-infect at this point.
+  #
+  # These services fail because of that. Although, updating configuration works
+  # just fine.
+  nix = {
+    gc.automatic = mkForce false;
+    optimise.automatic = mkForce false;
   };
 
   boot = {

Consider giving Nix/NixOS a try! <3