fix(fruitbook): 전지 그림을 보임

그런데 한 거만 해야 돼: upower을 켰어.
This commit is contained in:
2026-03-22 00:59:48 -06:00
parent ab7d28ac0f
commit 087f015340
2 changed files with 13 additions and 0 deletions

12
modules/nixos/upower.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.upower;
in {
options.sydnix.upower = {
enable = lib.mkEnableOption "UPower";
};
config = lib.mkIf cfg.enable {
services.upower.enable = true;
};
}