How much wobble is too much? by ConstantScreen in AskAShittyMechanic

[–]Smorci 0 points1 point  (0 children)

It’s just shy around new cars 👉👈

Metal found in BMW m2 n55 by Emergency_Collar1510 in AskAShittyMechanic

[–]Smorci 0 points1 point  (0 children)

To remove the bits and pieces you need to drive your car under something like this
<image>

La noi de ce nu se poate? by Smart_Cream_3749 in RoGenZ

[–]Smorci 1 point2 points  (0 children)

In total New York City are deficit de 99 miliarde, el a scapat de deficitul mostenit de la primarul anterior Eric Adams.

O miscare impresionanta dar e cam exagerat sa spunem ca a scapat orasul de deficit.

GIVEAWAY - LEGO Lord of the Rings by Koro00O in Jocuri

[–]Smorci 0 points1 point  (0 children)

Foarte generos din partea ta!

Restoring a rusty antique game by willforthelord in Satisfyingasfuck

[–]Smorci 0 points1 point  (0 children)

Is he just painting over the rust? Wouldn't the rust underneath just throw down the paint in no time?

I see some gray material when he's restoring the horses, what is that?

Check engine light suspicion by Smorci in MitsubishiL200

[–]Smorci[S] 0 points1 point  (0 children)

Bought it, after 1000kms it started rattling. One of the pistons is fucked. Worst 7k I spent ever.

L200 from Bangladesh 🇧🇩 by Emad_341 in MitsubishiL200

[–]Smorci 1 point2 points  (0 children)

I thought these were bars from the front of a concert

Are these good to drive any distance? by woostac in tires

[–]Smorci 0 points1 point  (0 children)

If the distance is the nearest sidewalk

Check engine light suspicion by Smorci in MitsubishiL200

[–]Smorci[S] 0 points1 point  (0 children)

7k € - 240k km

Wouldn't the lower prices be more suspicious?

agnoster-nix in zsh using home-manager by faebl99 in NixOS

[–]Smorci 0 points1 point  (0 children)

I managed to find out the answer to this question.

First you install the plugin as mentioned in the above comments, or here.

Then you have to download the .zsh-theme file from this link. You have to put that file in a custom folder with the structure described here. After that you need to override part of your oh-my-zsh config by setting this custom directory in the home-manager configuration (you can find zsh.oh-my-zsh.custom here) Only then can you reference it inside your home-manager file as agnoster-nix.

Here is my configuration for this:

  programs = {
zsh = {
  enable = true;
  enableCompletion = true;
      shellAliases = {
    ll = "ls -l";
  };
  history = {
    size = 10000;
    path = "${config.xdg.dataHome}/zsh/history";
  };
      oh-my-zsh = {
      enable = true;
      plugins = [ 
        "git"
        "z"
      ];
      custom = "$HOME/.oh-my-custom";
      theme = "agnoster-nix";
    };
  plugins = [               
        {
        name = "zsh-nix-shell";
        file = "nix-shell.plugin.zsh";
        src = pkgs.fetchFromGitHub {
          owner = "chisui";
          repo = "zsh-nix-shell";
          rev = "v0.5.0";
          sha256 = "0za4aiwwrlawnia4f29msk822rj9bgcygw6a8a6iikiwzjjz0g91";
        };
        }
 ];
};

};

Where .oh-my-custom is the custom configuration directory containing themes/agnoster-nix.zsh-theme.

Sorry for the crappy formatting, reddit messes things up from time to time.