-
Notifications
You must be signed in to change notification settings - Fork 21
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
Cannot build #44
Comments
I believe this could force ssbm-nix to use nixpkgs it is not compatible with which is likely the cause of your compilation errors. If you get rid of |
edit
No its the exact same - and this is a fresh install... first time nixos...
|
From within a flake you can only reference another flake, not a flake attribute. Also, I'm not sure it works without the nixpkgs overlay, which it looks like you are missing? |
I am new to NixOS - it would be nice to have a installation guide in this project for NixOS - I am not understanding what I'm doing. |
@lytedev could it be I am lacking dependencies? If so, which could they be? |
I'm still new, too. This {
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.home-manager.url = "github:nix-community/home-manager/master";
inputs.ssbm-nix.url = "github:lytedev/ssbm-nix";
outputs = {home-manager, ssbm-nix, nixpkgs, ...}: {
homeConfigurations."blu" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [ssbm-nix.overlay];
};
modules = [
./home.nix
ssbm-nix.homeManagerModule
];
};
};
} You can always run the application using |
Ah I'm silly! I realize that since we're using the But ultimately we should probably have the NixOS and homeManager modules use their own For now, I'll update my fork to do this and then folks using stable nixpkgs should be able to use the flake just fine. Stay tuned! |
Tried:
Result:
nix build github:djanatyn/ssbm-nix
flake.nix
home.nix
The text was updated successfully, but these errors were encountered: