From 1d7909ff7db397d9f063d1db62d5ba33e62677a9 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 29 Oct 2025 20:31:28 +0100 Subject: [PATCH 1/2] chore: make 64gb swap file for imilia --- hosts/imilia/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/imilia/default.nix b/hosts/imilia/default.nix index 9cd047f..1478b0e 100644 --- a/hosts/imilia/default.nix +++ b/hosts/imilia/default.nix @@ -19,11 +19,17 @@ environment = { systemPackages = with pkgs; [ fwupd - fw-ectool ]; etc.hosts.mode = "0700"; }; + swapDevices = [ + { + device = "/swapfile"; + size = 64 * 1024; + } + ]; + liv = { laptop.enable = true; desktop.enable = false; From b9e167360a8abf01f01144e0af78c2300528033d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 29 Oct 2025 20:31:42 +0100 Subject: [PATCH 2/2] feat: set gaps in hyprland to 0 --- modules/home/hyprland/config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/hyprland/config.nix b/modules/home/hyprland/config.nix index 09d768b..bd87ad0 100644 --- a/modules/home/hyprland/config.nix +++ b/modules/home/hyprland/config.nix @@ -110,8 +110,8 @@ general = { "$mainMod" = "ALT"; layout = "dwindle"; - gaps_in = 5; - gaps_out = 10; + gaps_in = 0; + gaps_out = 0; border_size = 2; "col.active_border" = "rgb(ffffff) rgb(ffffff) 45deg"; "col.inactive_border" = "0x00000000";