rename plusultra to metacfg

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-03-20 08:58:05 +01:00
parent b22607a4df
commit 04f08d679e
48 changed files with 149 additions and 149 deletions

View file

@ -1,9 +1,9 @@
{ options, config, pkgs, lib, inputs, ... }:
with lib;
with lib.plusultra;
with lib.metacfg;
let
cfg = config.plusultra.nix;
cfg = config.metacfg.nix;
substituters-submodule = types.submodule ({ name, ... }: {
options = with types; {
@ -12,7 +12,7 @@ let
});
in
{
options.plusultra.nix = with types; {
options.metacfg.nix = with types; {
enable = mkBoolOpt false "Whether or not to manage nix configuration.";
package = mkOpt package pkgs.nix "Which nix package to use.";
@ -28,13 +28,13 @@ in
assertions = mapAttrsToList
(name: value: {
assertion = value.key != null;
message = "plusultra.nix.extra-substituters.${name}.key must be set";
message = "metacfg.nix.extra-substituters.${name}.key must be set";
})
cfg.extra-substituters;
environment.systemPackages = with pkgs; [
plusultra.nixos-revision
(plusultra.nixos-hosts.override {
metacfg.nixos-revision
(metacfg.nixos-hosts.override {
hosts = inputs.self.nixosConfigurations;
})
deploy-rs
@ -46,7 +46,7 @@ in
nix =
let
users = [ "root" config.plusultra.user.name ] ++
users = [ "root" config.metacfg.user.name ] ++
optional config.services.hydra.enable "hydra";
extra-substituters = cfg.extra-substituters // {
"https://nixsgx.cachix.org".key = "nixsgx.cachix.org-1:tGi36DlY2joNsIXOlGnSgWW0+E094V6hW0umQRo/KoE=";
@ -74,7 +74,7 @@ in
++
(mapAttrsToList (name: value: value.key) extra-substituters);
} // (lib.optionalAttrs config.plusultra.tools.direnv.enable {
} // (lib.optionalAttrs config.metacfg.tools.direnv.enable {
keep-outputs = true;
keep-derivations = true;
});