aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorValentin <valentin@fricklerhandwerk.de>2025-10-15 15:35:36 +0200
committerValentin <valentin@fricklerhandwerk.de>2025-11-06 16:46:27 +0100
commit2a04f1c63ae150dc27dac8f33c0d6f04e3410b12 (patch)
treeba00378dae9ef0dc6421a65afd9d1a1ae7956406 /flake.nix
parentbcbf531a70955241970e5c976973a3e5e5840c56 (diff)
Zugang ohne Flakes
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/flake.nix b/flake.nix
index 5c9b8d0..e4512a1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -11,16 +11,6 @@
inputs.nixpkgs.follows = "nixpkgs";
};
};
- outputs =
- inputs@{ flake-parts, ... }:
- flake-parts.lib.mkFlake { inherit inputs; } (
- { self, lib, ... }:
- {
- imports = lib.fileset.toList (
- # Alle Nix-Dateien in diesem Projekt sind Flake-Parts-Module
- lib.fileset.fileFilter (file: file.hasExt "nix" && file.name != "flake.nix") ./.
- );
- systems = [ "x86_64-linux" ];
- }
- );
+ # Details in `default.nix`
+ outputs = inputs: import ./. inputs;
}