From aa48e071c36793b728333fc3866881fdf24d44da Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 4 Jan 2025 12:36:51 +0000 Subject: [PATCH] deploy: eb6e8b17b7beffd3792d898e30b0e9cd80de06ae --- index.xhtml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/index.xhtml b/index.xhtml index 56a87634..7eaf526a 100644 --- a/index.xhtml +++ b/index.xhtml @@ -253,13 +253,12 @@ on your needs.

To use it, we first add the input flake.

To use it, we first add the input flake.

   };
 
   outputs = { nixpkgs, home-manager, nvf, ... }: let
-  system = "x86_64-linux"; in {
+    system = "x86_64-linux";
+    pkgs = nixpkgs.legacyPackages.${system};
+  in {
     # ↓ this is your home output in the flake schema, expected by home-manager
-    "your-username@your-hostname" = home-manager.lib.homeManagerConfiguration
+    "your-username@your-hostname" = home-manager.lib.homeManagerConfiguration {
+      inherit pkgs;
       modules = [
         nvf.homeManagerModules.default # <- this imports the home-manager module that provides the options
-        ./home.nix # <- your home entrypoint
+        ./home.nix # <- your home entrypoint, `programs.nvf.*` may be defined here
       ];
     };
   };