From 097185ce4fc74c28becdb71d6dc6f0df1d67060b Mon Sep 17 00:00:00 2001 From: Philippe Loctaux
Date: Sun, 24 Nov 2024 23:40:24 +0100 Subject: [PATCH] removed dockerignore, flake outputs plcom package by default --- .dockerignore | 10 ---------- flake.nix | 16 +++------------- 2 files changed, 3 insertions(+), 23 deletions(-) delete mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index d1f2474..0000000 --- a/.dockerignore +++ /dev/null @@ -1,10 +0,0 @@ -target/ -wallpapers.json - -.idea/ -.vscode/ -.DS_Store -.gitea/ -readme.md -Dockerfile -.dockerignore diff --git a/flake.nix b/flake.nix index db769f9..aa33ba8 100644 --- a/flake.nix +++ b/flake.nix @@ -54,21 +54,11 @@ in { - apps.default = { - type = "app"; - program = "${plcom}/bin/plcom"; - }; - - packages = { - inherit plcom; - default = plcom; - }; + packages.system.default = plcom; checks = { - inherit - # Build the crate as part of `nix flake check` for convenience - plcomBinary - ; + # Build the crate as part of `nix flake check` for convenience + inherit plcomBinary; }; }