From 1287f005da9bd1154048c5b9626c8a50e11635c8 Mon Sep 17 00:00:00 2001 From: Roverp Date: Sat, 13 Sep 2025 23:06:47 +0200 Subject: [PATCH 1/2] docs(options): fix neovim option syntax from neovim.enable to neovim --- template/docs/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/docs/options.md b/template/docs/options.md index 76960fb4..1cafc6ee 100644 --- a/template/docs/options.md +++ b/template/docs/options.md @@ -115,7 +115,7 @@ below are the default options for hydenix. they are in *object format* and any o dolphin.enable = true; # file manager editors = { enable = true; # enable editors module - neovim.enable = true; # enable neovim module + neovim = true; # enable neovim module vscode = { enable = true; # enable vscode module wallbash = true; # enable wallbash extension for vscode From 2ab4f01eb10eb3cbc3427ee459f10ac6e70fceea Mon Sep 17 00:00:00 2001 From: Roverp Date: Sat, 13 Sep 2025 23:12:50 +0200 Subject: [PATCH 2/2] fix(userpkgs): add system context to prevent evaluation errors --- template/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/template/configuration.nix b/template/configuration.nix index a7455d48..0c7d0a9b 100644 --- a/template/configuration.nix +++ b/template/configuration.nix @@ -12,6 +12,7 @@ let inputs.hydenix.lib.overlays (final: prev: { userPkgs = import inputs.nixpkgs { + inherit (pkgs) system; config.allowUnfree = true; }; })