From 1fe8cb0c894869e1ee352cc1e42c089122dd4d51 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Fri, 21 Feb 2025 15:10:21 -0600 Subject: [PATCH] feat: wip hibernation integration --- lib/modules/home/default.nix | 26 ++++++++++++++++++-------- packages/hosts/foxtrot.nix | 1 - 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/lib/modules/home/default.nix b/lib/modules/home/default.nix index 3fc2bfe..cdad5a8 100644 --- a/lib/modules/home/default.nix +++ b/lib/modules/home/default.nix @@ -494,17 +494,27 @@ in }; }; - home = { - packages = with pkgs.gnomeExtensions; [ - tiling-shell - blur-my-shell - appindicator - ]; - }; + # home = { + # packages = with pkgs.gnomeExtensions; [ + # tiling-shell + # blur-my-shell + # appindicator + # ]; + # }; programs.gnome-shell = { enable = true; - extensions = [ { package = pkgs.gnomeExtensions.gsconnect; } ]; + extensions = + [ { package = pkgs.gnomeExtensions.gsconnect; } ] + ++ map (p: { package = p; }) ( + with pkgs.gnomeExtensions; + [ + tiling-shell + blur-my-shell + appindicator + hibernate-status-button + ] + ); }; }; }; diff --git a/packages/hosts/foxtrot.nix b/packages/hosts/foxtrot.nix index 270c82b..7a04e45 100644 --- a/packages/hosts/foxtrot.nix +++ b/packages/hosts/foxtrot.nix @@ -19,7 +19,6 @@ "amdgpu.sg_display=0" "boot.shell_on_fail=1" "acpi_osi=\"!Windows 2020\"" - "resume_offset=3421665" ]; initrd.availableKernelModules = [ "xhci_pci"