thejevans

joined 2 years ago
[–] thejevans@lemmy.ml 1 points 1 week ago

I recently started using compose2nix, and I'm enjoying it.

https://github.com/aksiksi/compose2nix

[–] thejevans@lemmy.ml 3 points 1 week ago

I do own one and I love it, but I have similar complaints about the heart rate monitor. I just don't use it enough to have it matter. sleep tracking works pretty okay, though.

[–] thejevans@lemmy.ml 13 points 1 week ago (2 children)

the Bangle.js 2 has all of those features and works with gadgetbridge like the pinetime

https://www.espruino.com/Bangle.js2

[–] thejevans@lemmy.ml 2 points 1 week ago

I was very much looking forward to this, and it works great. My instance is back up and running again.

[–] thejevans@lemmy.ml 8 points 2 weeks ago (1 children)

I use FreshRSS, Read You on Android, and NewsFlash on my PC. It all syncs via FreshRSS seamlessly.

[–] thejevans@lemmy.ml 1 points 2 weeks ago* (last edited 2 weeks ago)

Yeah, I guess I shouldn't have put that in this comment, I was just airing a tangential frustration. It still doesn't help me unless I set up a vps on a whitelisted domain at my work.

[–] thejevans@lemmy.ml 9 points 2 weeks ago (4 children)

I cannot access my homelab from my work network, so I cannot sync via Nextcloud. Syncthing would be better, but they just stopped supporting Android sync, which I need. Proton Drive doesn't sync files on Android. On top of that, I don't want to deal with sync issues because keepass isn't designed for syncing like that. I'm not gonna go back to using Google, Microsoft, or Dropbox just for keepass. I've considered just keeping my db file on a flash drive, but all of the keepass Android apps I tried won't automatically detect that the file exists when I plug in the drive.

If someone has a better way for me to use it, please enlighten me.

Bitwarden is slowly turning their stuff closed-source, and I hope they don't turn to shit, but right now it's what works.

[–] thejevans@lemmy.ml 4 points 2 weeks ago (1 children)

Yeah, I'm talking about not just Nix, but NixOS. Nix (the package manager) can do a lot, but NixOS + disko + home-manager can literally be all of the configuration for your machine from drive partitioning through to dot files. Throw in nixos-anywhere and impermanence and you can have an insane amount of control over all of your computers.

Ansible, Terraform, Chef, etc. do have some overlap, but the main difference is that those tools iterate through the system modifying it piece by piece and NixOS is declarative.

If something fails in some of my bigger Ansible playbooks, it could mean 30 minutes of just running through all the steps again. I could probably break it into sections, but then I have to worry about making sure they all get run when things get updated. In my NixOS install, it's way faster, I can roll back to a previous state, and troubleshooting is way easier in my opinion.

[–] thejevans@lemmy.ml 24 points 3 weeks ago (4 children)

You can't have your entire system configuration in a repository of plain text files, which has lots of advantages, but it's not worth caring about unless you feel excited to get into it.

[–] thejevans@lemmy.ml 3 points 3 weeks ago (1 children)

really weird that they only included a discord link, but here is the repo: https://github.com/dittofeed/dittofeed

[–] thejevans@lemmy.ml 1 points 1 month ago

Yeah, I got stuck on secrets management. I just could not get network manager to keep my WiFi passwords. I'll probably go back and try again at some point.

[–] thejevans@lemmy.ml 4 points 1 month ago (3 children)

Trying to configure Sway in NixOS. I gave up and just use KDE Plasma. I do miss using Sway from when I used Arch, though.

 

I'm having an annoying issue with pipewire. I have a Scarlett 8i6 audio interface. I have it set to Pro Audio so that I can access all the input and output channels, and I have virtual devices defined to allow applications to access groups of channels as discrete devices.

For some reason, all applications keep automatically switching to my secondary (mono) output. I can sometimes get them to switch to my primary stereo output, but it's only ever a one-off and they will switch back when the current media is done playing. any thoughts?

config:

context.modules = [
    {   name = libpipewire-module-loopback
        args = {
            node.description = "Primary - Focusrite Scarlett 8i6"
            capture.props = {
                node.name = "scarlett_8i6_primary"
                media.class = "Audio/Sink"
                audio.position = [ FL FR ]
            }
            playback.props = {
                node.name = "playback.scarlett_8i6_primary"
                audio.position = [ AUX0 AUX1 ]
                target.object = "alsa_output.usb-Focusrite_Scarlett_8i6_USB_F8CEK2H1B8391D-00.pro-output-0"
                stream.dont-remix = true
                node.passive = true
            }
        }
    }
    {   name = libpipewire-module-loopback
        args = {
            node.description = "Secondary (Mono) - Focusrite Scarlett 8i6"
            capture.props = {
                node.name = "scarlett_8i6_secondary"
                media.class = "Audio/Sink"
                audio.position = [ MONO ]
            }
            playback.props = {
                node.name = "playback.scarlett_8i6_secondary"
                audio.position = [ AUX2 ]
                target.object = "alsa_output.usb-Focusrite_Scarlett_8i6_USB_F8CEK2H1B8391D-00.pro-output-0"
                stream.dont-remix = true
                node.passive = true
            }
        }
    }
    {   name = libpipewire-module-loopback
        args = {
            node.description = "Microphone - Focusrite Scarlett 8i6"
            capture.props = {
                node.name = "capture.scarlett_8i6_mic"
                audio.position = [ AUX0 ]
                stream.dont-remix = true
                target.object = "alsa_input.usb-Focusrite_Scarlett_8i6_USB_F8CEK2H1B8391D-00.pro-input-0"
                node.passive = true
            }
            playback.props = {
                node.name = "scarlett_8i6_mic"
                media.class = "Audio/Source"
                audio.position = [ MONO ]
            }
        }
    }
    {   name = libpipewire-module-loopback
        args = {
            node.description = "Instrument - Focusrite Scarlett 8i6"
            capture.props = {
                node.name = "capture.scarlett_8i6_inst"
                audio.position = [ AUX1 ]
                stream.dont-remix = true
                target.object = "alsa_input.usb-Focusrite_Scarlett_8i6_USB_F8CEK2H1B8391D-00.pro-input-0"
                node.passive = true
            }
            playback.props = {
                node.name = "scarlett_8i6_inst"
                media.class = "Audio/Source"
                audio.position = [ MONO ]
            }
        }
    }
    {   name = libpipewire-module-loopback
        args = {
            node.description = "Mix - Focusrite Scarlett 8i6"
            capture.props = {
                node.name = "capture.scarlett_8i6_mix"
                audio.position = [ AUX2 AUX3 ]
                stream.dont-remix = true
                target.object = "alsa_input.usb-Focusrite_Scarlett_8i6_USB_F8CEK2H1B8391D-00.pro-input-0"
                node.passive = true
            }
            playback.props = {
                node.name = "scarlett_8i6_mix"
                media.class = "Audio/Source"
                audio.position = [ FL FR ]
            }
        }
    }
]
 

cross-posted from: https://lemmy.ml/post/11820406

Do not use 2 letter country TLDs!

view more: next ›