Standardize Minecraft variable formatting

This commit is contained in:
Bun 2025-03-27 09:24:38 -04:00
parent 9190e09c93
commit 9dbf18228b
12 changed files with 108 additions and 116 deletions

View file

@ -1,11 +1,11 @@
{ config, lib, pkgs, stable, unstable, ... }:
{
with pkgs; {
_module.args.pkgsStable = import stable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
_module.args.pkgsUnstable = import unstable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
}