about summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index f007a060fd16c..316181c2cc3b7 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,7 +8,9 @@
   provides = flakes:
     let pkgs = import ./. { system = "x86_64-linux"; }; in
     {
-      lib = import ./lib;
+      lib = (import ./lib) // {
+        nixosSystem = import ./nixos/lib/eval-config.nix;
+      };
 
       builders = {
         inherit (pkgs) stdenv fetchurl;