From 51c041158c8ac5ce89185b2b5c00ca2b7f4035c8 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 29 Jan 2023 15:21:37 +0100 Subject: [PATCH] add overlay folder for future --- machines/configurations.nix | 1 + overlays/default.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 overlays/default.nix diff --git a/machines/configurations.nix b/machines/configurations.nix index 11e7932..7f354ef 100644 --- a/machines/configurations.nix +++ b/machines/configurations.nix @@ -28,6 +28,7 @@ let ({ pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable + (import ../overlays) (import ../pkgs) ]; nix.nixPath = [ diff --git a/overlays/default.nix b/overlays/default.nix new file mode 100644 index 0000000..413d3b8 --- /dev/null +++ b/overlays/default.nix @@ -0,0 +1,4 @@ +self: super: +{ + # no overlays yet +}