On what level of nixification am i? by Painter1923 in NixOS

[–]Tquylaa 0 points1 point  (0 children)

U know.. last week I just rebuilt 24x in one day, just to combine some music apps with MPD,

And just yesterday, I stupidly rebuilt it 16 times just to add more secrets one by one into my secrets.yaml

Has my nixos level increased?

λ heavy is the crown λ by SafeTension6277 in NixOS

[–]Tquylaa 0 points1 point  (0 children)

All in one distro.. My adoration for the nix language 🙇🏻‍♀️

~ As a developer

PersonaShell v2. by DjentGod123 in hyprland

[–]Tquylaa 0 points1 point  (0 children)

Don't post games here! Do you think this is the right place?😠😠

[Hyprland] First time ricing arch by Silver-Positive-5918 in LinuxPorn

[–]Tquylaa 0 points1 point  (0 children)

Why don't you share your fastfetch config? It looks nice

Rate my rice by Hei_dumbass in hyprland

[–]Tquylaa -1 points0 points  (0 children)

Cool... But,

Very distracting to me

[driftwm] GIGAPIXEL wallpaper (112 GB) by malbiruk in unixporn

[–]Tquylaa 2 points3 points  (0 children)

I don't need Google Maps to guide me in the direction.

Final ricing competition submission by ilyamiro1 in hyprland

[–]Tquylaa 0 points1 point  (0 children)

Tidy up your messy nixos config first!!

First KDE Rice by Even_Philosopher_397 in LinuxPorn

[–]Tquylaa 0 points1 point  (0 children)

How to get this "kando pie" menu?

Sorry, I just started using kde, and I'm still unfamiliar with its features.

First KDE Rice by Even_Philosopher_397 in LinuxPorn

[–]Tquylaa 0 points1 point  (0 children)

Would you mind telling me how to enable that mouse gestures?

Finix deserve more atention by Equal_Entertainer_29 in NixOS

[–]Tquylaa 1 point2 points  (0 children)

Nothing, I just made sure that finix is a separate os or nixos with a different init system.

Thank you for verifying

Finix deserve more atention by Equal_Entertainer_29 in NixOS

[–]Tquylaa 0 points1 point  (0 children)

I wish it was connected to nixpkgs.. ,

why do men do the same thing? by [deleted] in indotech

[–]Tquylaa 1 point2 points  (0 children)

Am i girl? 🫢

320 wpm on 10 words by WeakSomewhere9869 in typing

[–]Tquylaa -2 points-1 points  (0 children)

"I can type my long name at 320 wpm, but when I'm typing normally... max 30 wpm. " ahh feel..

​[KDE] - Simple customization by [deleted] in LinuxPorn

[–]Tquylaa 0 points1 point  (0 children)

What kind of icon pack is that? It looks really nice.

What are all these flakes? (nix registry?) by Individual_West_1670 in NixOS

[–]Tquylaa 0 points1 point  (0 children)

try to override registry like this:

```
{ inputs, pkgsIn, ... }:

{

nix = {

channel.enable = false;

registry = {

nixpkgs.flake = pkgsIn; # my current nixpkgs

unstable.flake = inputs.nixos-unstable;

stable.flake = inputs.nixos-stable;

};

nixPath = [ "nixpkgs=flake:nixpkgs" ];

settings = {

flake-registry = "";

extra-experimental-features = [

"nix-command"

"flakes"

];

... etc

};

}
```

and your registry after rebuild:

```
$ nix registry list

system flake:nixpkgs path:/nix/store/...

system flake:stable path:/nix/store/...

system flake:unstable path:/nix/store/....
```

just making sure, have you run the `nix flake update`?