mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
841b45a8b5
Signed-off-by: main <magic_rb@redalder.org>
36 lines
838 B
Nix
36 lines
838 B
Nix
{ lib, config, ... }:
|
|
with lib;
|
|
|
|
{
|
|
options.magic_rb.secret = mkOption {
|
|
description = ''
|
|
Magic_RB's secret sause.
|
|
'';
|
|
type = types.unspecified;
|
|
};
|
|
|
|
config = {
|
|
_module.args.secret = config.magic_rb.secret;
|
|
|
|
magic_rb.secret =
|
|
let
|
|
secret = "${config.magic_rb.pins.secret}/default.nix";
|
|
modules = evalModules
|
|
{ modules =
|
|
[ ./wireguard.nix
|
|
./network.nix
|
|
./password-hashes.nix
|
|
./mounts.nix
|
|
./emacs.nix
|
|
] ++
|
|
(if (builtins.tryEval { x = import secret; }).success then
|
|
[ secret ]
|
|
else
|
|
builtins.trace "Warning! Not loading any secrets, you may get errors." []
|
|
);
|
|
};
|
|
in
|
|
modules.config;
|
|
};
|
|
}
|