Skip to content
New issue

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

Installation problem #50

Open
hakova opened this issue Mar 9, 2024 · 2 comments
Open

Installation problem #50

hakova opened this issue Mar 9, 2024 · 2 comments

Comments

@hakova
Copy link

hakova commented Mar 9, 2024

Hi,
I am very new to NixOS and had difficulty in following your installation instructions. I tried modifying my ~/.config/home-manager/flake.nix file as recommended for the standalone home manager installation and kept getting "undefined variable: nix-colors" error. Please see below my flake.nix file.

`{
description = "Home Manager configuration of user";

inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-colors.url = "github:misterio77/nix-colors";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = { nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."user" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [ ./home.nix ];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
extraSpecialArgs = { inherit nix-colors; };
};
};
}`

I appreciate any pointers about what I am doing wrong.

@AdamWorley
Copy link

I was having the same issues - I followed this youtube video https://www.youtube.com/watch?v=jO2o0IN0LPE and it's working perfectly now

@Misterio77
Copy link
Owner

Hey, sorry for the delay.

You're missing a nix-colors argument here:

outputs = { nixpkgs, home-manager, ... }:

Should be:

outputs = { nixpkgs, home-manager, nix-colors, ... }:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants