blob: 226841f2fa5bbb2b3cbf4679e13dc29570e76337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.local.desktop;
in {
config = mkIf cfg.enable {
local.athena-bccr = {
enable = true;
mirror = "https://public.posixlycorrect.com/dist/firma_digital";
vendor = "athena";
gaudiHash = "sha256-zZpaMO57vyQqmtCnymUl+vm//IObDX2dfmp/0+OPb4M=";
};
};
}
|