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

@ -8,23 +8,23 @@
# Options:
# - enable → Enable C compiler toolchain
#
{ config, lib, pkgs, ... }:
let
cfg = config.nyx-module.system.c-compiler;
in
{
config,
lib,
pkgs,
...
}: let
cfg = config.nyx-module.system.c-compiler;
in {
options.nyx-module.system.c-compiler = {
enable = lib.mkEnableOption "Enable C compiler (system module)";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
gcc # C & C++
clang # alt C/C++
mono # C#
gcc # C & C++
clang # alt C/C++
mono # C#
];
};
}