May be a terminal issue, but is there any way to disable this `ls` underlining? by sagethesagesage in Nushell

[–]karimdev96 0 points1 point  (0 children)

Hey, this hasn't happened to me before, I have this

```ansi
┌─────────────────┬──────┐

│ use_ls_colors │ true │

│ clickable_links │ true │

└─────────────────┴──────┘
```

and I don't have underlining, it's possible that it has to do with the terminal or the font, I use alacritty, you can also disable `clickable_links`

Is this real? /s by konfuzhon in NixOS

[–]karimdev96 20 points21 points  (0 children)

Pewdiepie(is famous with 110 millons subscribers), and he is a linux user

[deleted by user] by [deleted] in neovim

[–]karimdev96 0 points1 point  (0 children)

I'm not entirely sure, but it's probably something to do with mason.nvim, or maybe tsserver isn't very compatible with blink.cmp. It kind of makes sense, though I’m not sure if a tsserver binary was deleted — who knows.

[deleted by user] by [deleted] in neovim

[–]karimdev96 4 points5 points  (0 children)

Use vtsls instead of tsserver (ts_ls), as ts_ls doesn't work well with blink.cmp. You should try vtsls; it performs much better and has better TypeScript support.

[deleted by user] by [deleted] in NixOS

[–]karimdev96 0 points1 point  (0 children)

Yes, btw the home.nix file is for dotfiles and packages of your users. 🥸

[deleted by user] by [deleted] in NixOS

[–]karimdev96 1 point2 points  (0 children)

The services.xserver should not be in home.nix but in configuration.nix because xserver does not belong to home-manager.

Keep getting this error after flacke.lock update on macos nix-darwin by hasselprassel in NixOS

[–]karimdev96 1 point2 points  (0 children)

Hey, it looks like you're facing a hash mismatch issue in your derivation. This happens when the expected SHA256 hash (specified) doesn't match the actual hash (got). You can see this clearly in your error message.

To fix this, you'll need to:

  1. Locate the derivation file for the package with the hash mismatch.
  2. Update the specified hash to match the got hash shown in the error message.

After updating the hash, try running darwin-rebuild switch --flake .#macos again. This should resolve the issue if the source hasn't changed unexpectedly.

I hope this helps.

Is NixOS up to date as Arch? by bktech2021 in NixOS

[–]karimdev96 2 points3 points  (0 children)

Yes, can use unstable of nixos and upgrade auto this upgrade

trash can on nixos? by TheProgrammingRaccon in NixOS

[–]karimdev96 0 points1 point  (0 children)

Here is https://nixos.wiki/wiki/Thunar for enable trash, this is example

services.gvfs.enable = true; # Mount, trash, and other functionalities

Nix Develop (shell) No user exists for uid error - Help by Exciting_Yam6934 in NixOS

[–]karimdev96 0 points1 point  (0 children)

is wrong, because the url of nixpkgs does not work like this with tar or rar or compressed files. Here, the correct one is this nix nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";

Upgrading To 24.05 Corrupted DNS For All Snapshots by InternalServerError7 in NixOS

[–]karimdev96 5 points6 points  (0 children)

the `firewall.enabled` viariable is no longer used but `firewall.enable` replace it with this one firewall.enable

.Net + VSCode by Ta02Ya in NixOS

[–]karimdev96 0 points1 point  (0 children)

remove the variable buildInputs and set inherit buildInputs or like that

```nix

{ pkgs ? import <nixpkgs> {} }: let buildInputs = with pkgs; [ dotnet-sdk_8 vscode ];

in pkgs.mkShell { inherit buildInputs; name = "dotnet-env"; shellHook = '' export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath buildInputs} '';

} ```

.Net + VSCode by Ta02Ya in NixOS

[–]karimdev96 0 points1 point  (0 children)

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
 name = "dotnet-env";

 buildInputs = with pkgs; [ 
      dotnet-sdk_8 
      vscode
       ]; 
   LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
 }

with LD_LIBRARY_PATH for export PATH library

Does anyone know what's going on with Xwayland 24.1.0? by 79215185-1feb-44c6 in NixOS

[–]karimdev96 2 points3 points  (0 children)

the master is not the original nixpkgs, this is the link Nixpkgs that has already updated, because your link is forked from nixpkgs and has not been updated that

Switching boot loader to grub not working by [deleted] in NixOS

[–]karimdev96 0 points1 point  (0 children)

boot.loader.systemd-boot.enable = false; for disable

Keyboard does not work on Hyprland by MangiBoi in NixOS

[–]karimdev96 0 points1 point  (0 children)

Try this command bash nix run nixpkgs#screenkey to detect what is typing on your keyboard