Compare commits

..

No commits in common. "3f1abb9956acc297182b35f2d014e9d684b4bffc" and "b95c92cfb2ac4bef3ecc2d7838ecfe24a59ce6c9" have entirely different histories.

2 changed files with 19 additions and 2 deletions

10
.dockerignore Normal file
View file

@ -0,0 +1,10 @@
target/
wallpapers.json
.idea/
.vscode/
.DS_Store
.gitea/
readme.md
Dockerfile
.dockerignore

View file

@ -54,14 +54,21 @@
in
{
apps.default = {
type = "app";
program = "${plcom}/bin/plcom";
};
packages = {
inherit plcom;
default = plcom;
};
checks = {
# Build the crate as part of `nix flake check` for convenience
inherit plcomBinary;
inherit
# Build the crate as part of `nix flake check` for convenience
plcomBinary
;
};
}