-
Notifications
You must be signed in to change notification settings - Fork 56
/
flake.nix
76 lines (67 loc) · 1.9 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
description = "Sharry allows to share files with others in a simple way";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
sbt.url = "github:zaninime/sbt-derivation";
};
outputs = inputs@{ self, nixpkgs, flake-utils, sbt }:
{
overlays.default = final: prev: {
sharry = import ./nix/package.nix {
inherit (final) pkgs;
inherit sbt;
lib = final.pkgs.lib;
};
};
nixosModules.default = import ./nix/module.nix;
nixosConfigurations.test-vm =
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
};
in
nixpkgs.lib.nixosSystem {
inherit pkgs system;
specialArgs = inputs;
modules = [
self.nixosModules.default
./nix/configuration-test.nix
];
};
} // flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; overlays = [ self.overlays.default ]; };
in
{
packages = {
inherit (pkgs) sharry;
default = self.packages."${system}".sharry;
};
formatter = pkgs.nixpkgs-fmt;
devShells.default =
let
run-jekyll = pkgs.writeScriptBin "jekyll-sharry" ''
jekyll serve -s modules/microsite/target/site --baseurl /sharry
'';
in
pkgs.mkShell {
buildInputs = with pkgs; [
pkgs.sbt
# frontend
tailwindcss
elmPackages.elm
# for debian packages
dpkg
fakeroot
# microsite
jekyll
nodejs_18
run-jekyll
];
};
}
);
}