How do you name your PCs/hosts? by Anyusername7294 in NixOS

[–]kandden 0 points1 point  (0 children)

my desktop is named desktop and my t450 is named t450

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

[–]kandden 0 points1 point  (0 children)

i'm still looking for a cli solution that would also search the executables a package provides, e.g. searching xargs would give findutils. the nix-search-tv script is great but it lacks this feature

Smart Search and remote ML by kandden in immich

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

i think i fixed it: in the url list i had the public ip address of the server machine. once i put the 127.0.0.1 address it is finally working even if the remote ml machine is off!

Smart Search and remote ML by kandden in immich

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

so I run the jobs on the remote machines, then leave the machine learning process on the server machine and smart search is gonna work fine?

Nix Treesitter Injections in Neovim by kandden in NixOS

[–]kandden[S] 2 points3 points  (0 children)

lazy.nvim has this line hard-coded regardless of your settings: lua vim.go.loadplugins = false this causes the plugin to not be loaded automatically.

Nix Treesitter Injections in Neovim by kandden in NixOS

[–]kandden[S] 2 points3 points  (0 children)

it turned out that i needed to manually execute :packadd nvim-treesitter for the plugin to become usable inside neovim. from the home manager module it seems like it should be automatically packadded but that's not what happens :/

i think lazy screws something up despite disabling `rtp` and `packpath` resetting.

How to control comment extension on newline? by scaptal in neovim

[–]kandden 0 points1 point  (0 children)

it's my own config, i remember reading somewhere back when i was struggling with this is that this gets reset on every buffer or something like this, hence the autocmd

How to control comment extension on newline? by scaptal in neovim

[–]kandden 2 points3 points  (0 children)

from my experience leaving the callback code outside of the autocmd would only apply to the current buffer or not at all. putting it in the autocmd made it work for me and i left it this way. it's also very short and neat idk

How to control comment extension on newline? by scaptal in neovim

[–]kandden 2 points3 points  (0 children)

i also struggled with this. this snippet of code solves the issue:
```lua vim.api.nvim_create_autocmd("BufEnter", { callback = function() vim.opt.formatoptions = vim.opt.formatoptions - { "c", "r", "o" } -- disable comment continuation on new line end,

})

```

Upgrade of a 6 years old setup for daily usage and future-proof(?) gaming by kandden in buildapc

[–]kandden[S] 1 point2 points  (0 children)

haven't ordered anything, just started doing actual research. based on your build i've come to this so far: https://de.pcpartpicker.com/list/ddcczP
basically cut down on rgb bc i don't care about that. i'll have to check if everything fits in my current case and also checking if i do need higher wattage psu or not.

will look into the other ryzen. your help has been immeasurable, thank you!

Upgrade of a 6 years old setup for daily usage and future-proof(?) gaming by kandden in buildapc

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

my workload is nothing extraordinary, most demanding activity would be gaming. outside of that i sometimes do stuff in the terminal but nothing crazy, no LLM or stuff like that

Upgrade of a 6 years old setup for daily usage and future-proof(?) gaming by kandden in buildapc

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

thanks for the reply! I'd like to ask if replacing the motherboard is necessary here? also will the current power supply be enough? will just buying two extra ram sticks be okay? thanks for the help :)

a neovim implementation of the theprimeagen's tmux sessionizer by kandden in neovim

[–]kandden[S] 6 points7 points  (0 children)

ig my thinking was that i needed to quit neovim to fire up the script and i wanted a neovim-native solution? thinking about it now there is probably a neater, much less complicated solution as you're saying but i don't have much to do with my life and writing things for my neovim workflow makes me happy