!9IQChSjwSHXPPWTa:lix.systems

Lix

1123 Members
Lix user channel. Feel free to discuss on-topic issues here and give each other help. For matrix.to links to the rest of the Lix channels, see: https://wiki.lix.systems/books/lix-organisation/page/matrix-rooms304 Servers

Load older messages


SenderMessageTime
29 Jan 2026
@lillecarl:matrix.orglillecarl nix eval --file . attr
nix build --file . attr
nix repl --file . attr
I used to use flakes, I use these commands just about all the time. I never "learned" the "old" ones
15:03:21
@neobrain:matrix.orgneobrainI was also wondering about this (when you said something to the effect of "flakes have won" the other day) - is there data on this or is it anecdotal?15:03:25
@neobrain:matrix.orgneobrain* I was also wondering about this (when you said something to the effect of "flakes have won" the other day) - is there data on how many people use flakes or is it anecdotal?15:03:50
@neobrain:matrix.orgneobrain* I was also wondering about this (when you said something to the effect of "flakes have won" the other day) - is there data on how many people use flakes (vs not) or is it anecdotal?15:03:56
@delroth:delroth.netdelrothdetsys has published data about flake.nix presence in new github repos which shows overwhelming usage15:04:13
@delroth:delroth.netdelrotha lot of mental gymnastics has been done around this because detsys is a biased actor and their methodology isn't perfect15:04:41
@lillecarl:matrix.orglillecarlI don't doubt it's true though, I'm happy any time i see someone who didn't buy into the flake hypetrain.15:06:25
@neobrain:matrix.orgneobrain hmm. it's slightly more awkward than nix eval .#attr, but I guess still better than nix-env -lettersoup attr 15:06:28
@delroth:delroth.netdelrothhttps://discourse.nixos.org/t/a-call-for-the-nix-team-to-present-a-unified-front-on-the-outcome-and-strategy-around-nix-flakes/54959?u=delroth from 1.5 years ago (and there isn't a big reason to think the trend would have changed)15:06:42
@coca162:matrix.orgCoca(did they really have to use this color scheme? I can barely see flakes-and-legacy here)15:08:26
@lillecarl:matrix.orglillecarl "legacy" is a good name too 🤣 neobrain you can use flake-compatish to get the benefits of both flakes and non-flakes with minimal effort 😄 15:10:41
@aloisw:julia0815.dealoisw
In reply to @delroth:delroth.net
not necessarily channels (which are pretty terrible), my nixos machines are configured to have the nixpkgs they're built from symlinked at /etc/nixpkgs and a nix.nixPath = [ "nixpkgs=/etc/nixpkgs" ];
Something about the name "channel" meaning too many different things …
15:12:54
@neobrain:matrix.orgneobrainPragmatically that's nice, though I appreciate having a "standard way" of doing stuff in nix, which flakes seem to be the closest candidate for. Much easier to implement external tooling if everyone isn't using their own bespoke little setup15:17:00
@lillecarl:matrix.orglillecarlThat's the thing with flake-compatish. You can always use flakes, but when you don't want the downsides of flakes you work around them. It can be seen as an "optional addon" rather than a replacement. Being able to quickly override inputs to local paths (or other flakerefs) without molesting the lockfile is pretty convenient, especially if you're a flake user who against all odds decide to contribute to nixpkgs 😄 15:20:26
@lillecarl:matrix.orglillecarl* That's the thing with flake-compatish. You can always use flakes, but when you don't want the downsides of flakes you work around them. It can be seen as an "optional addon" rather than a replacement. Being able to quickly override inputs to local paths (including self for monorepos) (or other flakerefs) without molesting the lockfile is pretty convenient, especially if you're a flake user who against all odds decide to contribute to nixpkgs 😄 15:22:30
@neobrain:matrix.orgneobrainah yeah I see, makes sense15:24:27
@llakala:matrix.orgllakala
In reply to @coca162:matrix.org
Would it be fine to have to "sync" any edits to the source of truth as a separate action from evaluating the sources? The nice thing with flakes is that they can reflect the changes in flakes.nix without you needing to explicitly tell it to do so as the commands are built to handle it, and I'm not sure if not having that ability would make this worth it.
wdym by this
15:42:43
@llakala:matrix.orgllakalanot fully grasping what you're referring to15:42:59
@coca162:matrix.orgCocaIf I edit a file, the lockfile will not be updated to reflect the changes I have done to the source of truth15:43:42
@llakala:matrix.orgllakalaah yeah I see15:43:52
@llakala:matrix.orgllakalayeah I would like autosync15:44:28
@llakala:matrix.orgllakalai mean I think it would be possible to do it with only nix mechanisms15:44:43
@llakala:matrix.orgllakalacould you hash the npins.nix and see if the contents differ?15:45:09
@coca162:matrix.orgCocahttps://discourse.nixos.org/t/nixtamal-fulfilling-pure-input-pinning-for-nix/74745 funnily I just saw this, so I'm curious how they handle it, unfortunately I cannot comment however due to my trust level so I will just poke around at it15:45:15
@coca162:matrix.orgCoca* https://discourse.nixos.org/t/nixtamal-fulfilling-pure-input-pinning-for-nix/74745 funnily I just saw this, so I'm curious how they handle it, though unfortunately I cannot comment due to my trust level so I will just poke around at it15:45:36
@llakala:matrix.orgllakalai didn't look into nixtimal too much, it only uses derivation fetchers which I find a little silly15:46:01
@llakala:matrix.orgllakalaif you wanted to be really crazy, you could have a single npins.nix file with two attrsets within it15:47:16
@llakala:matrix.orgllakala```nix { sources.nixpkgs = { type = "github"; owner = "nixos"; repo = "nixpkgs"; branch = "nixos-unstable"; }; lock.nixpkgs = { ref = "some-git-ref-here"; url = "https://github.com/nixos/nixpkgs/some-git-ref-here.tar.gz"; hash = "sha256-blahblahblah"; }; } ```15:50:32
@llakala:matrix.orgllakala* ``` { sources.nixpkgs = { type = "github"; owner = "nixos"; repo = "nixpkgs"; branch = "nixos-unstable"; }; lock.nixpkgs = { ref = "some-git-ref-here"; url = "https://github.com/nixos/nixpkgs/some-git-ref-here.tar.gz"; hash = "sha256-blahblahblah"; }; } ```15:50:40
@llakala:matrix.orgllakalagod i hate matrix15:50:49

Show newer messages


Back to Room ListRoom Version: 10