fix(ds-fr): Switch to nix-pkgs
Some checks failed
Check meta / check_dns (pull_request) Successful in 19s
Check meta / check_meta (pull_request) Successful in 18s
Run pre-commit on all files / check (push) Successful in 27s
Check workflows / check_workflows (pull_request) Successful in 23s
Build all the nodes / compute01 (pull_request) Failing after 30s
Build all the nodes / bridge01 (pull_request) Successful in 53s
Build all the nodes / geo01 (pull_request) Successful in 52s
Build all the nodes / geo02 (pull_request) Successful in 56s
Build all the nodes / rescue01 (pull_request) Failing after 53s
Build all the nodes / web03 (pull_request) Has been cancelled
Build all the nodes / web02 (pull_request) Has been cancelled
Build all the nodes / vault01 (pull_request) Has been cancelled
Build all the nodes / web01 (pull_request) Has been cancelled
Build all the nodes / storage01 (pull_request) Has been cancelled
Run pre-commit on all files / check (pull_request) Successful in 23s
Some checks failed
Check meta / check_dns (pull_request) Successful in 19s
Check meta / check_meta (pull_request) Successful in 18s
Run pre-commit on all files / check (push) Successful in 27s
Check workflows / check_workflows (pull_request) Successful in 23s
Build all the nodes / compute01 (pull_request) Failing after 30s
Build all the nodes / bridge01 (pull_request) Successful in 53s
Build all the nodes / geo01 (pull_request) Successful in 52s
Build all the nodes / geo02 (pull_request) Successful in 56s
Build all the nodes / rescue01 (pull_request) Failing after 53s
Build all the nodes / web03 (pull_request) Has been cancelled
Build all the nodes / web02 (pull_request) Has been cancelled
Build all the nodes / vault01 (pull_request) Has been cancelled
Build all the nodes / web01 (pull_request) Has been cancelled
Build all the nodes / storage01 (pull_request) Has been cancelled
Run pre-commit on all files / check (pull_request) Successful in 23s
This commit is contained in:
parent
32f68a54a9
commit
0a4c73170a
1 changed files with 20 additions and 1 deletions
|
@ -1,7 +1,14 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
sources,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
host = "demarches.dgnum.eu";
|
||||
|
||||
dgn-id = "f270f1cdd09e643a9c666c94df1841234430de49";
|
||||
in
|
||||
{
|
||||
imports = [ ./module.nix ];
|
||||
|
@ -11,6 +18,18 @@ in
|
|||
services.demarches-simplifiees = {
|
||||
enable = true;
|
||||
|
||||
package =
|
||||
((import sources.nix-pkgs { inherit pkgs; }).demarches-simplifiees.override {
|
||||
initialDeploymentDate = "20230923";
|
||||
}).overrideAttrs
|
||||
(old: {
|
||||
dsModules = old.dsModules.overrideAttrs {
|
||||
prePatch = ''
|
||||
${pkgs.lib.getExe pkgs.git} apply -p1 < ${builtins.fetchurl "https://git.dgnum.eu/DGNum/demarches-normaliennes/commit/${dgn-id}.patch"}
|
||||
'';
|
||||
};
|
||||
});
|
||||
|
||||
secretFile = config.age.secrets."ds-fr-secret_file".path;
|
||||
|
||||
initialDeploymentDate = "20230923";
|
||||
|
|
Loading…
Reference in a new issue