Configure entrance exam
This commit is contained in:
parent
7b555a8a02
commit
f28b8d06f4
8 changed files with 173 additions and 1 deletions
13
flake.nix
13
flake.nix
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue