Configure entrance exam
All checks were successful
Cachix / build (marabethia) (push) Successful in 6m38s
Cachix / build (elendel) (push) Successful in 3m10s
Cachix / build (kholinar) (push) Successful in 6m4s

This commit is contained in:
Charlotte Van Petegem 2025-05-21 15:30:37 +02:00
parent 7b555a8a02
commit f28b8d06f4
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
8 changed files with 173 additions and 1 deletions

View file

@ -53,6 +53,14 @@
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
entrance-exam = {
url = "git+https://git.chvp.be/chvp/entrance-exam";
inputs = {
devshell.follows = "devshell";
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs";
};
};
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
@ -95,7 +103,7 @@
};
};
outputs = inputs@{ self, nixpkgs, accentor, accentor-api, accentor-web, agenix, darwin, devshell, emacs-overlay, flake-utils, home-manager, nix-index-database, nixos-mailserver, nur, tetris, www-chvp-be, ... }:
outputs = inputs@{ self, nixpkgs, accentor, accentor-api, accentor-web, agenix, darwin, devshell, emacs-overlay, entrance-exam, flake-utils, home-manager, nix-index-database, nixos-mailserver, nur, tetris, www-chvp-be, ... }:
let
patches = builtins.map (patch: ./patches + "/${patch}") (builtins.filter (x: x != ".keep") (builtins.attrNames (builtins.readDir ./patches)));
# Avoid IFD if there are no patches
@ -118,6 +126,9 @@
(self: super: {
tetris = tetris.packages.${self.system}.default;
})
(self: super: {
entrance-exam = entrance-exam.packages.${self.system}.default;
})
nur.overlays.default
www-chvp-be.overlays.default
];