From 0a2ad32dfbad0fa795d40b53e8b8ceb921b82f8f Mon Sep 17 00:00:00 2001 From: servius Date: Fri, 23 Jan 2026 12:59:50 +0530 Subject: [PATCH] feat: Use different partition for swapfile --- darwin/kuro/services/tailscale.nix | 3 +-- nixos/ryu/ryu.nix | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/darwin/kuro/services/tailscale.nix b/darwin/kuro/services/tailscale.nix index 0bc848b8..44ce5785 100644 --- a/darwin/kuro/services/tailscale.nix +++ b/darwin/kuro/services/tailscale.nix @@ -1,6 +1,5 @@ -{stablePkgs, ...}: { +{...}: { services.tailscale = { enable = true; - # package = stablePkgs.tailscale; }; } diff --git a/nixos/ryu/ryu.nix b/nixos/ryu/ryu.nix index 4cbdbd52..688c1ec5 100644 --- a/nixos/ryu/ryu.nix +++ b/nixos/ryu/ryu.nix @@ -138,7 +138,7 @@ swapDevices = [ { - device = "/var/lib/swapfile"; + device = "/home/swapfile"; size = 64 * 1024; } ];