From 778ddede63e912f865da695c5f520b92b06cbcdd Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 26 Mar 2025 13:42:09 +0100 Subject: [PATCH] fix hibernation --- hosts/haze/default.nix | 1 + hosts/haze/hibernate.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 hosts/haze/hibernate.nix diff --git a/hosts/haze/default.nix b/hosts/haze/default.nix index 448065b..78bf4c8 100644 --- a/hosts/haze/default.nix +++ b/hosts/haze/default.nix @@ -14,6 +14,7 @@ ./firefox.nix ./gimp.nix ./gnome.nix + ./hibernate.nix ./ssh.nix ./steam.nix ./thunderbird.nix diff --git a/hosts/haze/hibernate.nix b/hosts/haze/hibernate.nix new file mode 100644 index 0000000..67ac124 --- /dev/null +++ b/hosts/haze/hibernate.nix @@ -0,0 +1,3 @@ +{ + boot.initrd.systemd.enable = true; +}