summaryrefslogtreecommitdiff
path: root/templates/system-flake/pkgs/hello-world/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/system-flake/pkgs/hello-world/default.nix')
-rw-r--r--templates/system-flake/pkgs/hello-world/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/system-flake/pkgs/hello-world/default.nix b/templates/system-flake/pkgs/hello-world/default.nix
deleted file mode 100644
index 19047a1..0000000
--- a/templates/system-flake/pkgs/hello-world/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{stdenv, ...}:
-stdenv.mkDerivation {
- name = "hello-world";
- version = "1.0.0";
-
- src = ./.;
-
- installPhase = ''
- mkdir -p $out/bin
- cp hello-world $out/bin
- '';
-
- meta.mainProgram = "hello-world";
-}