Tomas Zaluckij

Results 9 comments of Tomas Zaluckij

I am having the same issue with a few different keyboards. Right now my plan is to order keyboards from Amazon & return them if they don't work until I...

Can confirm this issue is still present in version 6.0.6

I have tried setting it up as described by others in this issue. However, I am currently having trouble with the Nuxt client throwing the following error: "Apollo client with...

Hi @smlx, it seems the specification has been merged last year, is this still something you would like to do? With `age` keys gaining support and `git` being able to...

Yubico says "security keys with firmware 5.7 will be available to purchase in late May 2024" in their [latest press release](https://www.yubico.com/press-releases/yubicos-key-product-innovations-empower-enterprise-security-and-phishing-resistant-passwordless-authentication-at-scale/). They also confirmed Ed25519 and X25519 PIV support in...

Nix/NixOS in general are quite different compared to the traditional Linux package managers and distributions, and although they do have a [central repository](https://github.com/NixOS/nixpkgs/) for packaging, they also have a somewhat...

Yeah I forgot to mention that xattrs work locally in the mergerfs pool with these configs, they only don't work when accessing the pool through nfs.

@trapexit I've tested it again on Arch with kernel 6.1.12 and got the same results. This time I set up a MergerFS pool on the system drive and NFS server...

You're right, after doing the following changes it works as expected: ```diff # Setup NFS exports -NFS_EXPORT_LINE="$TEST_ROOT/pool 127.0.0.1(rw,fsid=0,no_root_squash,no_subtree_check)" +NFS_EXPORT_LINE="$TEST_ROOT/pool 127.0.0.1(rw,fsid=1,no_root_squash,no_subtree_check)" ``` ```diff # Setup NFS client -mount -t nfs -o...