fixing a LOT of typos

This commit is contained in:
Chris Kruining 2024-07-22 13:03:19 +02:00
parent 795bb17857
commit b183b789b4
25 changed files with 57 additions and 65 deletions

View file

@ -0,0 +1,15 @@
{ config, options, lib, pkgs, ... }:
let
inherit (lib.modules) mkIf;
in
{
options.modules.programs = let
inherit (lib.options) mkEnableOption;
in {
enable = mkEnableOption "Rust developmnt";
};
config = mkIf config.modules.programs.enable {
};
}