refactor: nix fmt classic to nix fmt

This commit is contained in:
Rasyidan Akbar F. 2026-01-30 15:59:48 +07:00
commit f9614371a3
57 changed files with 923 additions and 493 deletions

View file

@ -1,8 +1,14 @@
{ config, pkgs, lib, ... }:
{
config,
pkgs,
lib,
...
}:
let
inherit (lib) mkIf mkOption types;
cfg = config.rsydn.systemPackages;
in {
in
{
options.rsydn.systemPackages = {
enable = mkOption {
type = types.bool;
@ -13,8 +19,7 @@ in {
packages = mkOption {
type = types.listOf types.package;
default = with pkgs; [ tailscale ];
description =
"System packages that must be available globally across macOS.";
description = "System packages that must be available globally across macOS.";
};
};