rcerc

Results 13 comments of rcerc

Could you please post the code you are using to import Home Manager into your NixOS configuration? I have a feeling that `` is being imported alongside ``, but I...

The options for configuring GTK are under the `gtk` attribute (as opposed to `home.gtk`). When specifying the GTK themes, you should not quote the packages (i.e., use `package = pkgs.papirus-icon-theme;`...

@arcnmx, @berbiche and @rycee, could format generators for DAGs be written, solving this issue for other modules as well? A `toJSON` function for DAGs would have to be implemented (see...

I wrote a `toJson` function for DAGs and some functions that use `remarshal` to convert DAGs to files of other formats (e.g. TOML and YAML). The code is [here](https://github.com/rcerc/home-manager/tree/dag-config-gen). A...

I am not sure if TOML name-value pairs are meant to convey an order according to the specification, but (if it is not bad practice to depend on this order)...

I'm currently working on tidying (and repairing) the code I suggested to extend Nixpkgs in Home Manager so that we don't eventually run into problems with it, and I'm trying...

The idea was to allow each user configuration to extend the package set passed to the NixOS module instead of having to set `useGlobalPkgs = false` and reference the correct...

Thank you. I'll consider using this personally. I will still leave the PR open in case giving the `nixpkgs.{config,overlays}` options this functionality is thought to be convenient.

OK, I merged the modules and provided an `inheritGlobalPkgs` option (as well as `readOnly`). @emilazy, if you have time, could you please check that I did not misunderstand anything or...