!dGrjXvKnCwVLevgmzo:matrix.org

Stockholm NixOS meetup group

48 Members
Monthly meetups in Stockholm, Sweden around Nix releated topics(nixos.org)14 Servers

Load older messages


SenderMessageTime
16 Jan 2026
@adis:blad.isadisbladis

Thinking to visit Stockholm for a bit, but there is one essential thing I don't know where to find... A decent place to get some work done.
I'm struggling to find something like a co-working space which has:

  • Short term not crazy expensive rates (subjective ofc)

  • Proper office chairs with arm rests
    Damn near everything I find has terrible chairs. Armrests are essential.

  • A nice & calm environments
    No loud/messy open spaces with people talking on the phone nearby.

01:53:07
18 Jan 2026
@andmuz:matrix.organdmuz left the room.13:30:48
20 Jan 2026
@lillecarl:matrix.orglillecarl @adis:blad.is I dont think Stockholm has those. ANC headphones and back-pain is the way. 13:03:00
@lillecarl:matrix.orglillecarlOn location 📍 💪17:01:42
28 Jan 2026
@adis:blad.isadisbladisSure seems like it.. They seem to think that a pinnstol is good enough for a full workday.01:33:14
29 Jan 2026
@talyz:matrix.orgtalyzThey're all BYOC (bring your own chair)08:38:33
30 Jan 2026
@lillecarl:matrix.orglillecarl
        version =
          let
            prefix = "kube-prometheus-stack-";
          in
          lib.pipe "https://api.github.com/repos/prometheus-community/helm-charts/releases" [
            builtins.fetchurl
            builtins.readFile
            builtins.fromJSON
            (lib.filter (release: lib.hasPrefix prefix release.name))
            (lib.map (release: release // { version = lib.removePrefix prefix release.name; }))
            (lib.sort (a: b: lib.versionAtLeast a.version b.version))
            lib.head
            (release: release.version)
          ];

When you're tired of playing catch-up with a renovateBot you get desperate

11:57:54
@lillecarl:matrix.orglillecarl *
version =
  let
    prefix = "kube-prometheus-stack-";
  in
  lib.pipe "https://api.github.com/repos/prometheus-community/helm-charts/releases" [
    builtins.fetchurl
    builtins.readFile
    builtins.fromJSON
    (lib.filter (release: lib.hasPrefix prefix release.name))
    (lib.map (release: release // { version = lib.removePrefix prefix release.name; }))
    (lib.sort (a: b: lib.versionAtLeast a.version b.version))
    lib.head
    (release: release.version)
  ];

When you're tired of playing catch-up with a renovateBot you get desperate

11:58:08
@lillecarl:matrix.orglillecarl *
version =
  let
    prefix = "kube-prometheus-stack-";
  in
  lib.pipe "https://api.github.com/repos/prometheus-community/helm-charts/releases" [
    builtins.fetchurl
    builtins.readFile
    builtins.fromJSON
    (lib.filter (release: lib.hasPrefix prefix release.name))
    (lib.map (release: lib.removePrefix prefix release.name))
    (lib.sort (a: b: lib.versionAtLeast a b))
    lib.head
  ];

When you're tired of playing catch-up with a renovateBot you get desperate

11:59:49
@lillecarl:matrix.orglillecarl *
version =
  let
    prefix = "kube-prometheus-stack-";
  in
  lib.pipe "https://api.github.com/repos/prometheus-community/helm-charts/releases" [
    builtins.fetchurl
    builtins.readFile
    builtins.fromJSON
    (lib.filter (release: lib.hasPrefix prefix release.name))
    (lib.map (release: lib.removePrefix prefix release.name))
    (lib.sort (a: b: lib.versionAtLeast a b))
    lib.head
  ];

When you're tired of playing catch-up with a renovateBot you get desperate

12:00:01
@lillecarl:matrix.orglillecarl changed their profile picture.22:28:06
3 Feb 2026
@markuskowa:matrix.orgmarkuskowaWho's in for a meetup on Wednesday, February 25th?14:05:13
5 Feb 2026
@vhsconnect:matrix.orgvhsconnectCan we make it Tuesday?20:10:14
@markuskowa:matrix.orgmarkuskowaThis time I am not free on Tuesday.20:27:36
@markuskowa:matrix.orgmarkuskowaOr Tuesday 17th as an alternative?20:28:29
@vhsconnect:matrix.orgvhsconnectI can do the 17th20:43:36
31 Jan 2024
@rickynils:nixos.devRickard Nilsson joined the room.22:05:29
@lillecarl:matrix.orglillecarlDamn, I forgot to ask to take a picture w/ everyone. Thanks for a great evening everyone! 😁 23:37:57
1 Feb 2024
@claesatwork:matrix.orgClaesYes great to meet everyone! Attendance was above all expectations!07:02:00
@markuskowa:matrix.orgmarkuskowaThanks to everyone! Yesterday was absolutely great. 09:27:57
@igorramazanov:matrix.orgigorramazanov joined the room.10:09:05
@igorramazanov:matrix.orgigorramazanov set a profile picture.10:10:05
@igorramazanov:matrix.orgigorramazanovYeah :) (hi all 👋)10:12:40
2 Feb 2024
@lillecarl:matrix.orglillecarl
{ lib
, ...
}:
# $FLAKE should be configured to where your repository is located
# Preferably using direnv, you can also set it into your sessionVariables
let
  dot_path = "${builtins.getEnv("FLAKE")}/sub/dir/";
  dot_paths = lib.filesystem.listFilesRecursive dot_path;
  dot_strings = builtins.map (x: builtins.toString x) dot_paths;
  dot_prefixDeleted = builtins.map (x: builtins.replaceStrings [ dot_path ] [ "" ] x) dot_strings;
  dotfile_outOfStoreLinked = lib.attrsets.genAttrs dot_prefixDeleted (name: {
    source = config.lib.file.mkOutOfStoreSymlink (dot_path + name);
  });
in
{
  home.file = dotfile_outOfStoreLinked;
}

I know I mentioned linking things from $FLAKE repo into $HOME which I'm quite happy with. This is the implementation I'm using. It'll replicate a tree subdir into $HOME for you, nothing using home.file.x.recursive so you won't get collisions with folders and stuff 😄

20:18:15
3 Feb 2024
@claesatwork:matrix.orgClaesI didn't know you could do that! 22:36:07
6 Feb 2024
@igorramazanov:matrix.orgigorramazanovWould be nice to have an additional option: "does not really matter" and also allow multichoice19:51:29
7 Feb 2024
@markuskowa:matrix.orgmarkuskowa
In reply to @igorramazanov:matrix.org
Would be nice to have an additional option: "does not really matter" and also allow multichoice
Will do it in the next iteration. I'm still exploring the options that matrix provides.
17:48:01
12 Feb 2024
@markuskowa:matrix.orgmarkuskowaIt looks like there is a slight preference for Wednesday. Should we go with Wednesday the 21st?09:58:19
13 Feb 2024
@markuskowa:matrix.orgmarkuskowaOk, let's have the next meetup, on Wednesday 21.02. Same place, same time (19:00 at the Nordic light hotel).21:02:15
21 Feb 2024
@markuskowa:matrix.orgmarkuskowaSee you tonight. 09:47:33

Show newer messages


Back to Room ListRoom Version: 10