-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
28 lines (24 loc) · 910 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
{
description = "Midstall Software Website";
nixConfig = rec {
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ];
substituters = [ "https://cache.nixos.org" "https://cache.garnix.io" ];
trusted-substituters = substituters;
fallback = true;
http2 = false;
};
inputs.expidus-sdk.url = github:ExpidusOS/sdk;
outputs = { self, expidus-sdk }:
with expidus-sdk.lib;
flake-utils.eachSystem flake-utils.allSystems (system:
let
pkgs = expidus-sdk.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell rec {
pname = "midstallsw-website";
rev = "git+${self.shortRev or "dirty"}";
name = "${pname}-${rev}";
packages = with pkgs; [ tilt minikube hugo go dart-sass-embedded ];
};
});
}