We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The instructions of NixOS without flake are wrong:
https://github.com/snowfallorg/nixos-conf-editor/tree/27b5e92f580f794c690093503869aab242f075ab?tab=readme-ov-file#nixos-installation
Following them gives error: attempt to call something which is not a function.
error: attempt to call something which is not a function
They should probably read something like this:
{ config, pkgs, lib, ... }: let nixos-conf-editor-flake = import (pkgs.fetchFromGitHub { owner = "snowfallorg"; repo = "nixos-conf-editor"; rev = "0.1.2"; sha256 = "sha256-/ktLbmF1pU3vFHeGooDYswJipNE2YINm0WpF9Wd1gw8="; }); in #... environment.systemPackages = with pkgs; [ nixos-conf-editor-flake.packages.${system}.nixos-conf-editor ];
i.e. not calling the import and using the proper flake output. Or you have to change your default.nix.
default.nix
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The instructions of NixOS without flake are wrong:
https://github.com/snowfallorg/nixos-conf-editor/tree/27b5e92f580f794c690093503869aab242f075ab?tab=readme-ov-file#nixos-installation
Following them gives
error: attempt to call something which is not a function
.They should probably read something like this:
i.e. not calling the import and using the proper flake output. Or you have to change your
default.nix
.The text was updated successfully, but these errors were encountered: