Try to add microboard package

This commit is contained in:
Ivan R. 2023-08-21 21:18:47 +05:00
parent c85d156d9a
commit b239d0000f
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C
4 changed files with 32 additions and 1 deletions

View file

@ -1,5 +1,25 @@
{
"nodes": {
"microboard": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1692551759,
"narHash": "sha256-7/7LYVSnjlAgQqKy5kBV/qOGpv9jKpGMb5fuG7svKFw=",
"owner": "ordinary-dev",
"repo": "microboard",
"rev": "f4e7efc5700559195b4166830a44be672a9c1851",
"type": "github"
},
"original": {
"owner": "ordinary-dev",
"repo": "microboard",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1691592289,
@ -18,6 +38,7 @@
},
"root": {
"inputs": {
"microboard": "microboard",
"nixpkgs": "nixpkgs"
}
}

View file

@ -5,9 +5,14 @@
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-23.05";
};
microboard = {
url = "github:ordinary-dev/microboard";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs }:
outputs = inputs @ { self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {

View file

@ -20,6 +20,7 @@
./programs/maddy.nix
./programs/plausible.nix
./programs/clickhouse.nix
./programs/microboard.nix
];
# Enable flakes

View file

@ -0,0 +1,4 @@
{ config, microboard, ... }:
{
microboard.enable = false;
}