| 29 Oct 2021 |
@gytis-ivaskevicius:matrix.org | Also guys i'd like to share this:
https://github.com/gytis-ivaskevicius/nix2vim
https://github.com/DieracDelta/vimconf_talk/blob/5_ci/neoConfig.nix
| 14:37:14 |
@gytis-ivaskevicius:matrix.org | a little project I cooked up. Today it is going to be used in https://www.vimconf.live/ | 14:37:43 |
@gytis-ivaskevicius:matrix.org | (Justin Restivo is the presenter) | 14:37:54 |
@kraftnix:matrix.org | In reply to @gytis-ivaskevicius:matrix.org Also guys i'd like to share this: https://github.com/gytis-ivaskevicius/nix2vim https://github.com/DieracDelta/vimconf_talk/blob/5_ci/neoConfig.nix
this is quite neat, i've added to my todo to see how different my nvim config would be if I used this vs home-manager | 16:12:37 |
David Arnold (blaggacao) | I'll be pausing for a week or two, too. 🙂 See ya soon! | 16:18:15 |
| David Arnold (blaggacao) left the room. | 16:18:22 |
@gytis-ivaskevicius:matrix.org | Tim left, David left. I nominate myself the new god of this channel! | 16:31:51 |
@kraftnix:matrix.org | i'd vote you for provisional god, but i think you'd need to fight Pacman99 for it | 16:32:54 |
b12f | why not a polytheism | 16:33:18 |
@gytis-ivaskevicius:matrix.org | Pacman99: go away! | 16:34:09 |
@kraftnix:matrix.org | time for a Theomachy | 16:37:57 |
Pacman99 | In reply to @gytis-ivaskevicius:matrix.org Tim left, David left. I nominate myself the new god of this channel! You got an entire discord, can't I get one matrix channel? 🙄 | 16:43:22 |
@gytis-ivaskevicius:matrix.org | MINE | 16:43:40 |
@gytis-ivaskevicius:matrix.org | EVERYTHING MUST BE MINE | 16:43:46 |
@gytis-ivaskevicius:matrix.org | MINNNNEEEEE | 16:43:49 |
b12f |
| 16:43:59 |
b12f | *
RFC 135
MINE EVERYTHING MUST BE MINE MINNNNEEEEE
| 16:45:03 |
@gytis-ivaskevicius:matrix.org | IM TAKING OVER NIXOS FOUNDATION | 17:13:53 |
@gytis-ivaskevicius:matrix.org | blagg page thingy became private 🤔 | 17:15:06 |
@gytis-ivaskevicius:matrix.org |  Download image.png | 17:15:07 |
@kraftnix:matrix.org | In reply to @gytis-ivaskevicius:matrix.org blagg page thingy became private 🤔 https://discourse.nixos.org/t/about-a-recent-moderation-action-post-on-discourse/15764 | 17:25:14 |
| 30 Oct 2021 |
@kraftnix:matrix.org | I just updated to the latest nixpkgs and I am suddenly having some issues with digga's mkTest, the nodes in the test no longer have system defined, here is an example from a repl:
nix-repl> Flake.checks.x86_64-linux.customTestFor-vmIso-simple-trilium.system
"x86_64-linux"
nix-repl> Flake.checks.x86_64-linux.customTestFor-vmIso-simple-trilium.passthru.nodes.machine.pkgs.system
error: attribute 'system' missing
at «string»:1:1:
1| Flake.checks.x86_64-linux.customTestFor-vmIso-simple-trilium.passthru.nodes.machine.pkgs.system
| ^
2|
I'm having a look to see why this is, but any advice / thoughts are welcome
| 08:25:18 |
@kraftnix:matrix.org | I have no issues building any of the systems which the test use as a base, it seems this issue only occurs in checks | 08:27:16 |
| 31 Oct 2021 |
@kraftnix:matrix.org | This was insanely difficult to track down (5-6hrs lost on this) as the stack track was not useful at all. The only thing that caused the error was this one LoC, and I don't really understand how it could cause the config to no longer have the system attribute as no where in the stack trace referenced anything related to this.
nixpkgs.config.allowUnfree = false;
| 16:21:41 |
@kraftnix:matrix.org | * This was insanely difficult to track down (5-6hrs lost on this) as the stack track was not useful at all. The only thing that caused the error was this one LoC, and I don't really understand how it could cause the pkgs in a config to no longer have the system attribute as no where in the stack trace referenced anything related to this.
nixpkgs.config.allowUnfree = false;
| 16:22:14 |
@kraftnix:matrix.org | the other strange part of it was that only checks broke, I could still build and deploy hosts with no issues. | 17:01:35 |
@princemachiavelli:matrix.org | kraftnix: What are your nixpkg inputs (nixos & latest inputs)? | 17:09:11 |
@kraftnix:matrix.org | nixos = unstable, latest=master | 17:31:18 |
@kraftnix:matrix.org | i've been running it like this since the beginning of 2021 | 17:31:33 |
Pacman99 | I think it could be because the pkgs inside the test nodes are not being instantiated right or exported right. allowUnfree might just have fixed the underlying error by changing how nixpkgs is exported. | 17:55:42 |