2xsaiko

joined 1 year ago
[–] [email protected] 3 points 11 months ago

I would REALLY like a MessageKit like they already have CallKit which allows integrating other messengers with the Messages app so I can just use the one app for everything. Probably wishful thinking though.

[–] [email protected] 17 points 11 months ago
[–] [email protected] 9 points 11 months ago (1 children)

Sir, this is ~~a Wendy's~~ !technology

[–] [email protected] 2 points 11 months ago

Three windows, with 7, 4 and 1 tab respectively.

[–] [email protected] 1 points 11 months ago

That's awesome! Would love to go one day.

[–] [email protected] 5 points 11 months ago (1 children)

I’m eying servercheap.com and it says in description “1 IPv4”, but then it offers “Add’l Ipv4 Addresses” for 9$. I’m bit lost here and I’m not even sure do I need IPv4 address. Maybe I can run duckdns or ddclient to avoid additional cost?

You should have an IPv4 address unless you're sure everyone who needs to access it has working IPv6 access or you don't mind setting up 6to4/6in4 at the locations that don't (or complain to ISPs until they fix it). The one should be fine.

[–] [email protected] 22 points 11 months ago (3 children)

Google, should be self explanatory, but for me specifically for pretty much making YouTube worse with every change they make since that's the only service of them I still use. And I'm not going to also pay them to sell my data.

Epic Games, for continuously fucking over Linux players and Unreal fans (and well players in general but specifically those two groups).

[–] [email protected] 1 points 11 months ago

My parents got me one of those when I was a kid. It didn’t help me at all, back then at least :(

Glad it worked for her though!

[–] [email protected] 2 points 11 months ago

Also, as for current favorite artist/album/song, I would say:

  • Favorite Artist: This one is hard to decide because there's a lot of candidates, but in terms of "will I like probably anything they release?" probably Young Medicine.
  • Favorite Album: CCL Dive by Cityfires. This has been my favorite album for a long time. Make sure to listen to it with headphones or in a quiet room, because it has a lot of quiet parts and small details.
  • Favorite Song: daisy chain by wishlane, jacob geoffrey & defsharp. Absolute banger, love the energy and I definitely listened to this on repeat for a while when I found it.
[–] [email protected] 6 points 11 months ago (2 children)

That's a lot of minutes listened! I've still yet to beat the 100k minutes, last couple years I had around 90k :D

[–] [email protected] 3 points 11 months ago (3 children)

This is rather a replay of the past ~two months since I've switched to Apple Music sometime in September, but here!

(For some reason Apple Music has two artist profiles of Ember Falls, that's why they're there twice)

[–] [email protected] 4 points 1 year ago* (last edited 1 year ago)
  1. Disregard Docker. You've got NixOS, you don't need Docker. Thank god.
  2. Configure the services:
{config, pkgs, ...}: {
  # Jellyfin
  services.jellyfin.enable = true;
  
  # enable the other *arrs, whichever you want to use
  services.sonarr.enable = true;

  # qbittorrent user and service
  users = {
    groups.torrent = {
      # put users that should be allowed to access torrented media
      members = [config.services.jellyfin.user "you"];
    };

    users.torrent = {
      isSystemUser = true;
      description = "qbittorrent user";
      group = "torrent";
      createHome = true;
      home = "/var/lib/torrent";
    };
  };
  
  systemd.services.qbittorrent = let
    qbittorrent = pkgs.qbittorrent.override {guiSupport = false;};
  in {
    enable = true;
    description = "qbittorrent daemon";
    documentation = ["man:qbittorrent-nox(1)"];
    wants = ["network-online.target"];
    after = ["network-online.target" "nss-lookup.target"];
    wantedBy = ["multi-user.target"];
    serviceConfig = {
      ExecStart = "${qbittorrent}/bin/qbittorrent-nox";
      User = "torrent";
    };
  };
  
  # VPN configuration
  networking.wg-quick.interfaces = {
    mullvad = {
      # Insert options for Mullvad
      address = [...];
      dns = [...];
      peers = [
        {
          publicKey = "...";
          allowedIPs = ["0.0.0.0/0" "::0/0"];
          endpoint = "...";
        }
      ];
    };
  };
  
  # file server, SMB unfortunately works the best for all the operating systems
  services.samba = {
    enable = true;
    shares = {
      storage = {
        # where do you store your stuff?
        path = "/path/to/linux/ISOs";
        browseable = "yes";
        "read only" = "no";
        "guest ok" = "yes";
        "create mask" = "0644";
        "directory mask" = "0755";
      };
    };
    extraConfig = ''
      workgroup = WORKGROUP
      server string = ${config.networking.hostName}
      netbios name = ${config.networking.hostName}

      guest account = nobody
      map to guest = bad user

      # No printers
      load printers = no
      printing = bsd
      printcap name = /dev/null
      disable spoolss = yes
      show add printer wizard = no

      dos charset = CP850
      unix charset = UTF-8
      unix extensions = yes
      ; mangled names = no
      map archive = no
      map system = no
      map hidden = no
    '';
  };
}

This is a minimal config that doesn't set up specific stuff like qbittorrent's file storage location or network interface, I'd tell you how to do it but I don't actually have such a setup. This is just copied from what I have/had in my configuration and looking up services on https://search.nixos.org (very useful site if you don't know about it).

view more: ‹ prev next ›