aboutsummaryrefslogtreecommitdiff
path: root/nixinate/default.nix
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-08-11 16:51:35 +0200
committerMax Audron <audron@cocaine.farm>2023-08-11 16:51:35 +0200
commit75b417455361d776d8c92a35ba69854c0cc0bcee (patch)
treecacf2223821749e372c2968fc659248b26e43c59 /nixinate/default.nix
parentadd custom nixinate impl (diff)
move nixinate to own flake
Diffstat (limited to 'nixinate/default.nix')
-rw-r--r--nixinate/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/nixinate/default.nix b/nixinate/default.nix
deleted file mode 100644
index 26cd4d4..0000000
--- a/nixinate/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-# The importApply argument. Use this to reference things defined locally,
-# as opposed to the flake where this is imported.
-localFlake:
-
-# Regular module arguments; self, inputs, etc all reference the final user flake,
-# where this module was imported.
-{ lib, config, self, inputs, ... }:
-let
- lib = inputs.nixpkgs.lib;
- generateApps = import ./generate-apps.nix inputs.nixpkgs;
-in
-{
- flake = {
- };
- perSystem = { system, pkgs, ... }: {
- apps = generateApps pkgs self;
- };
-}