-
that's my config.nix:
That's the error, it produces:
According to your installation guide, what I'm doing seems to be simply following the instructions. Why isn't it working? |
Beta Was this translation helpful? Give feedback.
Answered by
Bodleum
Apr 6, 2024
Replies: 2 comments
-
You need to actually import the module. Currently you have: imports = [
/etc/nixos/hardware-configuration.nix
nixvim
]; It should read: imports = [
/etc/nixos/hardware-configuration.nix
nixvim.nixosModules.nixvim
]; P.S. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
GaetanLepage
-
Yeah, this did work. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to actually import the module. Currently you have:
It should read:
P.S.
You can also collapse the
let ... in
blocks into one.