installed and ran alejandra as formatter

This commit is contained in:
Jade 2023-11-26 21:26:49 +01:00
commit 8a1314b58f
47 changed files with 1362 additions and 1113 deletions

View file

@ -1,10 +1,16 @@
{ config, lib, pkgs, ... }:
let cfg = config.jade.NAME;
in with lib; {
options.jade.NAME = {
enable = mkEnableOption "Enable the module";
};
config = mkIf cfg.enable {
};
}
{
config,
lib,
pkgs,
...
}: let
cfg = config.jade.NAME;
in
with lib; {
options.jade.NAME = {
enable = mkEnableOption "Enable the module";
};
config =
mkIf cfg.enable {
};
}