-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
37 lines (34 loc) · 1009 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2022 Association Prologin <[email protected]>
# Copyright (c) 2022 Marc 'risson' Schmitt <[email protected]>
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
futils.url = "github:numtide/flake-utils";
renogin.url = "git+https://gitlab.com/prologin/tech/tools/renogin.git";
};
outputs = { self, nixpkgs, futils, renogin } @ inputs:
let
inherit (nixpkgs) lib;
inherit (lib) recursiveUpdate;
inherit (futils.lib) eachDefaultSystem defaultSystems;
nixpkgsFor = lib.genAttrs defaultSystems (system: import nixpkgs {
inherit system;
});
in
(eachDefaultSystem (system:
let
pkgs = nixpkgsFor.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
git
poetry
pre-commit
renogin.packages.${system}.default
];
};
}
));
}