!apXxbtexmNGJaAryzM:nixos.org

NixOS on WSL

336 Members
https://github.com/nix-community/NixOS-WSL56 Servers

Load older messages


SenderMessageTime
10 Sep 2024
@simonyde:matrix.orgSimon Yde
In reply to @k900:0upti.me
^ do this
Hi. currently I find that my WSL system won't build at all, it when I try to rebuild either home-manager or my system config it results in an infinite loop. I tried following this step but it doesn't seem to have an effect
09:32:37
@k900:0upti.meK900What do you mean by "infinite loop" exactly?09:34:30
@simonyde:matrix.orgSimon Yde like the build never finishes. Normally i use nh to interact with nix, but doing sudo nixos-rebuild switch --flake . doesn't work either, just never progresses 09:37:36
@k900:0upti.meK900That sounds weird09:41:01
@k900:0upti.meK900Which Nix version is that on?09:41:04
@k900:0upti.meK900And how long does it get stuck for09:41:09
@simonyde:matrix.orgSimon Ydeit's strange as i haven't changed my nixos config for this system, yet the nix evaluation never finishes09:41:33
@simonyde:matrix.orgSimon Yde
In reply to @k900:0upti.me
And how long does it get stuck for
like one time I left it to see how long it would go and it just went on evaluating for 25 mins+
09:47:25
@simonyde:matrix.orgSimon Yde
In reply to @k900:0upti.me
Which Nix version is that on?
⟩ nix --version
nix (Nix) 2.18.5
09:47:56
@k900:0upti.meK900 Try running it with -vvvv to see what it's doing 09:48:05
@simonyde:matrix.orgSimon Yde
$ nix --extra-experimental-features nix-command flakes build --out-link /tmp/nixos-rebuild.fEZKNm/nixos-rebuild .#nixosConfigurations."icarus-wsl".config.system.build.nixos-rebuild -vvvv
evaluating derivation 'git+file:///home/syde/Config#nixosConfigurations."icarus-wsl".config.system.build.nixos-rebuild'
09:55:39
@simonyde:matrix.orgSimon Ydethis is all that ever happens it would appear09:55:55
@k900:0upti.meK900That... sounds wrong09:57:24
@k900:0upti.meK900Maybe try evaluating it with a newer Nix version or Lix?09:58:27
@arexon:matrix.org@arexon:matrix.org left the room.10:15:13
@simonyde:matrix.orgSimon Yde

evaluating withnix eval on a different computer running NixOS

trace: evaluation warning: Use `stdenv.tests` instead. `passthru` is a `mkDerivation` detail.
performing daemon worker op: 7
instantiated 'bootstrap-stage0-stdenv-linux' -> '/nix/store/y3vwfd67h193ynxz98jwn3gd81vblacb-bootstrap-stage0-stdenv-linux.drv'
performing daemon worker op: 7
instantiated 'stdenv-test-succeedOnFailure' -> '/nix/store/8bxfynjfm1l82438dig1fvr6v4g4d6ph-stdenv-test-succeedOnFailure.drv'
trace: evaluation warning: Use `stdenv.tests` instead. `passthru` is a `mkDerivation` detail.
performing daemon worker op: 7
instantiated 'bootstrap-stage0-stdenv-linux' -> '/nix/store/y3vwfd67h193ynxz98jwn3gd81vblacb-bootstrap-stage0-stdenv-linux.drv'
performing daemon worker op: 7
instantiated 'stdenv-test-succeedOnFailure' -> '/nix/store/8bxfynjfm1l82438dig1fvr6v4g4d6ph-stdenv-test-succeedOnFailure.drv'
trace: evaluation warning: Use `stdenv.tests` instead. `passthru` is a `mkDerivation` detail.
performing daemon worker op: 7
instantiated 'bootstrap-stage0-stdenv-linux' -> '/nix/store/y3vwfd67h193ynxz98jwn3gd81vblacb-bootstrap-stage0-stdenv-linux.drv'
performing daemon worker op: 7
instantiated 'stdenv-test-succeedOnFailure' -> '/nix/store/8bxfynjfm1l82438dig1fvr6v4g4d6ph-stdenv-test-succeedOnFailure.drv'
trace: evaluation warning: Use `stdenv.tests` instead. `passthru` is a `mkDerivation` detail.
performing daemon worker op: 7
instantiated 'bootstrap-stage0-stdenv-linux' -> '/nix/store/y3vwfd67h193ynxz98jwn3gd81vblacb-bootstrap-stage0-stdenv-linux.drv'
performing daemon worker op: 7
instantiated 'stdenv-test-succeedOnFailure' -> '/nix/store/8bxfynjfm1l82438dig1fvr6v4g4d6ph-stdenv-test-succeedOnFailure.drv'
trace: evaluation warning: Use `stdenv.tests` instead. `passthru` is a `mkDerivation` detail.
performing daemon worker op: 7
instantiated 'bootstrap-stage0-stdenv-linux' -> '/nix/store/y3vwfd67h193ynxz98jwn3gd81vblacb-bootstrap-stage0-stdenv-linux.drv'
performing daemon worker op: 7
instantiated 'stdenv-test-succeedOnFailure' -> '/nix/store/8bxfynjfm1l82438dig1fvr6v4g4d6ph-stdenv-test-succeedOnFailure.drv'
trace: evaluation warning: Use `stdenv.tests` instead. `passthru` is a `mkDerivation` detail.
error: stack overflow (possible infinite recursion)
11:24:59
@k900:0upti.meK900That sounds very wrong11:25:32
@k900:0upti.meK900Do you have any sort of custom overlays?11:25:38
@simonyde:matrix.orgSimon Yde

This is my overlays config that I use on all other machine I have

  config = {
    nixpkgs = {
      overlays = [
        inputs.nur.overlay
        inputs.helix.overlays.default
        inputs.nix-ld-rs.overlays.default
        inputs.neovim-nightly.overlays.default
        inputs.rustaceanvim.overlays.default

        (final: prev: {
          stable = import inputs.stable {
            config = prev.config;
            system = prev.system;
          };
          grawlix = prev.callPackage ./home-manager/packages/grawlix.nix { };
          pix2tex = inputs.pix2tex.packages.${prev.system}.default;

          delta = final.stable.delta;
          swaylock-effects = final.stable.swaylock-effects;

          kattis-cli = prev.callPackage ./home-manager/packages/kattis-cli.nix { };
          kattis-test = prev.callPackage ./home-manager/packages/kattis-test.nix { };
          vimPlugins = prev.vimPlugins // {
            mini-nvim = prev.vimUtils.buildVimPlugin {
              version = "nightly";
              pname = "mini-nvim";
              src = inputs.mini-nvim;
            };

            neogit = prev.vimUtils.buildVimPlugin {
              version = "nightly";
              pname = "neogit";
              src = inputs.neogit;
            };
          };
        })
      ];
    };
  };

11:30:10
@simonyde:matrix.orgSimon Ydeincluding the wsl instance11:30:18
@k900:0upti.meK900Yeah maybe try removing some of those overlays11:31:31
@simonyde:matrix.orgSimon Yde I'm able to build it using sudo nixos-rebuild --flake .#nixosConfiguration.icarus-wsl build but it won't evaluate with nix eval 11:54:06
@k900:0upti.meK900Oh wait11:57:08
@k900:0upti.meK900 Are you trying to nix eval the entire nixosConfigurations.icarus-wsl? 11:57:19
@k900:0upti.meK900 You want to nix eval .#nixosConfigurations.icarus-wsl.config.system.build.toplevel 11:57:28
@simonyde:matrix.orgSimon Ydeoh, though that still results in the same stack overflow, even on the proper NixOS config I'm using on my laptop to write this message14:20:10
@k900:0upti.meK900That does not sound right at all15:12:19
@simonyde:matrix.orgSimon Ydeturns out it's my git that's fucked because of gpg-agent being used for SSH, and it not being able to open pinentry19:52:46
@simonyde:matrix.orgSimon YdeI don't know how to work around it19:52:50
@common16:matrix.orgcommon16I'm actually on a similar issue. Do you guys have advice on how to manage injecting the SSH keys? I posted my config yesterday and sometimes my WSL asks me for a passphrase on literally every call to my git origin but other times it asks once and then works for the rest of my session(?) 🤔19:56:56

Show newer messages


Back to Room ListRoom Version: 9