chore: pretty up with alejandra

This commit is contained in:
Peritia 2025-09-22 16:16:02 +02:00
parent 7bbda6140f
commit 37b85877bb
75 changed files with 584 additions and 452 deletions

View file

@ -9,13 +9,14 @@
# Notes:
# - Installed via home.packages
#
{ config, lib, pkgs, ... }:
let
cfg = config.nyx-module.home.zoom;
in
{
config,
lib,
pkgs,
...
}: let
cfg = config.nyx-module.home.zoom;
in {
options.nyx-module.home.zoom = {
enable = lib.mkEnableOption "Enable Zoom (home) module";
@ -27,6 +28,6 @@ in
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
home.packages = [cfg.package];
};
}