18 lines
628 B
Nix
18 lines
628 B
Nix
{ config, pkgs, lib, materusCfg, ... }:
|
|
let
|
|
materusArg = {
|
|
pkgs = (import materusCfg.nixerus { inherit pkgs; }) //
|
|
(if pkgs.system == "x86_64-linux" then { i686Linux = import materusCfg.nixerus { pkgs = pkgs.pkgsi686Linux; }; } else { });
|
|
cfg = materusCfg;
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
./nixpkgs.nix
|
|
./packages
|
|
];
|
|
options.materus.materusArg = lib.mkOption { default = { }; };
|
|
config._module.args.materusArg = config.materus.materusArg // materusArg;
|
|
config.warnings = lib.mkIf (!materusCfg.materusFlake.decrypted) [ "Repository not decrypted, private configs not loaded, use crypt.sh to decrypt" ];
|
|
}
|