Terje Larsen

Results 212 comments of Terje Larsen

Yeah, that could be another PR. However having another look at this, perhaps the value should be an option, because now this is switching to IFD, right? and there is...

Which fish version is used and which NixOS release? It was fixed here: https://github.com/fish-shell/fish-shell/issues/10616 And on release-25.05 it is 4.02 which should include the fix. https://github.com/fish-shell/fish-shell/blob/Integration_4.0.2/src/bin/fish_indent.rs#L976

We already have somewhat working KDL support as part of Home Manager. I built a module some time ago: https://github.com/terlar/nix-config/blob/main/modules/home/services/window-managers/niri.nix But I wanted to take it for a spin for...

Yes, this is what I did. I used this one: https://github.com/nix-community/home-manager/blob/master/modules/lib/generators.nix#L63 The main issue is the non-support for multiple definitions of the same attribute, e.g. "spawn-at-startup". This would be defined...

The problem is that the structure expects multiple toplevel keys and not a list. The array representation will be interpreted as: ```nix { spawn-at-startup = ["waybar" "arg1" "arg2"]; nested =...

Perhaps, that would be a list of lists. As the arguments should be outside of the quotes. Or perhaps just do what I did now and define an explicit option...

Yes, I'm still using it. There has been some development, e.g. this PR: https://github.com/nix-community/home-manager/pull/7429 However it still requires some modification, which the author @quentinmit indicated would be easy (https://github.com/NixOS/nixpkgs/pull/426828#issuecomment-3111754732) I...

Another example of a browser with Tree Style Tabs is https://github.com/kovidgoyal/vise It is also written in python, so perhaps could draw some inspiration.

It seems you are right regarding `builtins.fetchTree` not supporting `.tar.lz`. I guess another way would be to use a derivation, at least that seems supported: https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/mo/moe/package.nix It seems that the...

Actually it seems to work when I test on my machine: ``` $ nix build --eval-store /tmp/test-store --expr 'builtins.fetchTree { type = "tarball"; narHash = "sha256-WGMPCLj/RH8we9HEGTxvyc9wyG70H+IRNq7p0G+IcjE="; url = "https://elpa.gnu.org/packages/csv- mode-1.24.tar.lz";...