jtojnar has quit [Remote host closed the connection]
jtojnar has joined #nixos-dev
drakonis_ has quit [Ping timeout: 258 seconds]
drakonis_ has joined #nixos-dev
mingc has quit [Ping timeout: 264 seconds]
mingc has joined #nixos-dev
justan0theruser has joined #nixos-dev
justanotheruser has quit [Ping timeout: 255 seconds]
justan0theruser is now known as justanotheruser
orivej has quit [Ping timeout: 250 seconds]
justanotheruser has quit [Ping timeout: 250 seconds]
drakonis1 has quit [Quit: WeeChat 2.4]
jtojnar has quit [Remote host closed the connection]
justanotheruser has joined #nixos-dev
justanotheruser has quit [Ping timeout: 250 seconds]
justanotheruser has joined #nixos-dev
init_6 has joined #nixos-dev
justanotheruser has quit [Ping timeout: 245 seconds]
orivej has joined #nixos-dev
orivej has quit [Ping timeout: 246 seconds]
orivej has joined #nixos-dev
orivej has quit [Ping timeout: 244 seconds]
peti has quit [Quit: WeeChat 2.1]
colemickens_ has quit [Quit: Connection closed for inactivity]
kisik21 has joined #nixos-dev
<kisik21>
I just understood that my problem is more on-topic for this channel, so posting it here too: I have a home-manager module for personal use, but it doesn't work. Says the "theming" attribute is missing - what's up? Here's the gist of the module: https://gist.github.com/kisik21/5f6732376426190cb1379a0353c51071
<gchristensen>
ah actuallyI'm not sure home-manager isn't really on topic, since it is not a NixOS Organization project? not sure how we handle it. that said, I'm not turning you away, but there might be better places for you to get help
<kisik21>
Home-manager modules are almost the same as NixOS module
<kisik21>
So you may pretend I'm working on a NixOS module :3
<tilpner>
You should generally include commands you ran and the errors they produced
<kisik21>
I ran "home-manager build" and got following: "error: attribute 'theming' missing, at /home/kisik21/.config/nixpkgs/modules/theming.nix:86:18"
<kisik21>
The module is included in home.nix via imports, similar to how custom NixOS modules are included.
<tilpner>
I feel like that might work if it was a NixOS module
<kisik21>
I posted in #home-manager just in case
<tilpner>
The submodule at that level is unnecessary, you can directly set options.theming.enable = mkEnableOption ...;
<kisik21>
tilpner: Unnecessary means it will work but it is not the best way?
<tilpner>
I would not expect it to cause the error, but i might be missing something. I don't see an advantage to having it either way
<kisik21>
The whole theming submodule seems to be nonexistent, as per error
<kisik21>
Ok I have probably solved it. tilpner, you were kinda right - too much levels of submodules confused the heck outta Nix and it didn't recognize the attribute
<kisik21>
At least the error is different now :3
<tilpner>
yay, progress
orivej has joined #nixos-dev
<kisik21>
Ok. Now I need a read-only option combining three strings provided by user that can be used in user configurations. I kinda have that in my gist, but it doesn't seem to be usable from other configs, and even the stuff I set in that config cannot be referenced from another module. For example, I had a reference to gtk.font option in my config - now it says that attribute is simply missing. Maybe something's wrong with how I set the