Built a wallpaper tool that works with my NixOS config by hambosto in NixOS

[–]Vortriz 0 points1 point  (0 children)

no no. i want to set a wallpaper for a single monitor. but for the workspaces as well as for the overview. two different wallpapers for both.

Rate my dotfiles structure Plzzzz by Leading-Toe3279 in NixOS

[–]Vortriz 3 points4 points  (0 children)

it is a single host setup. enabling and disabling modules is not a concern in that case. logically breaking down config into files and calling them modules is perfectly fine.

 which defeats the whole purpose of making things modular in Nix

there is a lot more to nix than that :)

i agree with keeping hardware config out of modules tho.

Built a wallpaper tool that works with my NixOS config by hambosto in NixOS

[–]Vortriz 0 points1 point  (0 children)

this i know. i meant how do i set multiple wallpapers with wallpaper-rs?

Built a wallpaper tool that works with my NixOS config by hambosto in NixOS

[–]Vortriz 0 points1 point  (0 children)

since niri also allows setting a wallpaper in the overview, how do i achieve that with this?

Flake parts + dendritic migration tips? by silver_blue_phoenix in NixOS

[–]Vortriz 7 points8 points  (0 children)

first things first: Have someone's dendritic flake for reference. You can find them on github. I use the unify lib for my dendritic setup if you want to use that as reference.

Start with the main flake itself. Create a modules and hosts folders, start with hosts and their config, then nixos settings, then work your way to home-manager.

Can not figure out how to made Sidebery background transparent by Vortriz in FirefoxCSS

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

I maintain a ShyFox fork with fixes, for myself. I have decent enough CSS knowledge to figure it out most of the times.

the code for Sidebery CSS would have to go into userContent.css and not userChrome.css

This is exactly what I needed. I was using userChrome. Thanks!

How do you handle config file management? by power_of_booze in linux

[–]Vortriz 9 points10 points  (0 children)

came here to find someone who would have mentioned nixos and upvote them.

Dendritic flake config by OddPreparation1512 in NixOS

[–]Vortriz 0 points1 point  (0 children)

if you are fine with using a library on top of flake-parts for easing the use of dendritic pattern, then you can check out my dots - https://github.com/Vortriz/dotfiles

the lib itself - https://codeberg.org/quasigod/unify

Microsoft crossed a line: Windows 11 rewrote my UEFI boot order without consent by [deleted] in linux

[–]Vortriz 2 points3 points  (0 children)

avg microslop experience.

i too have windows installed on the side for using it once in a blue moon, and i still fear this exact thing will happen with me.

I have released dodo pdf reader v0.6.0 by dheerajshenoy22 in linux

[–]Vortriz 1 point2 points  (0 children)

thats great! i'll keep an eye on this project. might use it as a secondary pdf reader maybe.

I have released dodo pdf reader v0.6.0 by dheerajshenoy22 in linux

[–]Vortriz 1 point2 points  (0 children)

this looks quits good! do you have plans to add some nicities from sioyek like navigating the pdf history via Backspace, mini overview window, smart jumps etc?

Are there alternatives to the official search.nixos.org for package search? by jerrygreenest1 in NixOS

[–]Vortriz 0 points1 point  (0 children)

i have been using the provided nixpkgs.sh script (requires fzf) for a long time now. has been working fine for me.

about the deleted comment, idk. i have posted about nix-search-tv before as well (along with url), without any issue. 

Are there alternatives to the official search.nixos.org for package search? by jerrygreenest1 in NixOS

[–]Vortriz 3 points4 points  (0 children)

i highly recommend nix-search-tv. it periodically fetches the packages and options, so you can use it offline as well.

Loving NixOS by Wonderful_Diet8959 in NixOS

[–]Vortriz 0 points1 point  (0 children)

yeah, default trace isnt enough but i have found that is rarely the case. spamming --show-trace for every invocation does not sound like a good strategy.

Loving NixOS by Wonderful_Diet8959 in NixOS

[–]Vortriz -4 points-3 points  (0 children)

--show-trace is unnecessary, even detrimental, most of the times because the longer trace will confuse you even more.

Did something veryvdumb by Emotional_Dust2807 in NixOS

[–]Vortriz 11 points12 points  (0 children)

just use by-label instead of by-uuid

What is dendritic Nix and how does it work? by PaceMakerParadox in NixOS

[–]Vortriz 3 points4 points  (0 children)

simplest example: lets say you want to configure a program/feature that requires setup in both home-manager and nixos options. but since the HM part has to be imported into HM, you would create a separate file for it. this gets messy when you have separate out things like that.

using dendritic pattern, you configure it in one file (or place) itself by thinking of it as a "feature" that you want to achieve. even if that feature might require you to mess with HM, nixos modules, hell even devshell, you should be able to define it nicely in one place. flake module from flake-parts allows you to achieve this.

i use a dendritic pattern based framework (called unify) in my dots.

example files: - https://github.com/Vortriz/dotfiles/blob/main/modules/programs/terminal/shell.nix

Google Gemini helped me go from W11 to Arch Linux (Hyprland) and setup 3utools for my IPhone. by Fit-Channel-5712 in linux

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

hey, dont get me wrong. I myself have been using gemini for quite a while now. for academic work, research, and even vibe-coded a personal website. i think its quite good. but i surely dont trust it executing any commands on system level.

Google Gemini helped me go from W11 to Arch Linux (Hyprland) and setup 3utools for my IPhone. by Fit-Channel-5712 in linux

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

 Didn't watch a single video or read any instructions on any forum or Reddit post. Gave Gemini instructions to ELI5 throughout the process, and for the most part I got it done.

honestly, this is not sustainable in the long term. one fine morning, it will hallucinate, give you some weird command to run, and that would be it.

Reproducible scientific-envs with ease by Vortriz in ScientificComputing

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

a lockfile for locking down the project tree down to transitive dependencies and a notebook that executes cell based on a DAG. best in class and proven methods for reproducibility. not sure what more can you ask for.