home-manager module doesn't work #87
-
I am trying to use the ironbar home-manager module, but I get this error:
I am using nixpkgs unstable. Here are (I think) all the relevant parts of my config.
{
description = "Home Manager configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
ironbar = {
url = "github:JakeStanger/ironbar";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { nixpkgs, home-manager, hyprland, ironbar, ...} @ inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations.riley = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
hyprland.homeManagerModules.default
ironbar.homeManagerModules.default
./home.nix
];
};
};
} And in { ... }: {
programs.ironbar = {
enable = true;
config = {};
style = "";
} I am pretty new to nix; apologies if I missed something really obvious. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
@yavko one for you :) I'm rubbish at Nix |
Beta Was this translation helpful? Give feedback.
-
Okay thanks for bringing this up, I can see the problem, and will release a patch ASAP |
Beta Was this translation helpful? Give feedback.
-
Fixed created in this pull request! #89 |
Beta Was this translation helpful? Give feedback.
Fixed created in this pull request! #89