.dotfiles/profiles/nixos/hibernation/default.nix
2025-04-30 19:34:28 +02:00

13 lines
309 B
Nix

{ lib, config, ... }:
{
options.swarselsystems.profiles.hibernation = lib.mkEnableOption "is this a host using hibernation";
config = lib.mkIf config.swarselsystems.profiles.hibernation {
swarselsystems.modules = {
optional = {
hibernation = lib.mkDefault true;
};
};
};
}