Nix flakes explained

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.พ. 2025
  • Enabling flakes:
    nixos.wiki/wik... - commands are here
    Creating a flake:
    $ nix flake init
    Updating a flake:
    $ nix flake update
    Flake:
    ```
    {
    description = "my epic vims collection";
    inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    };
    outputs = { self, nixpkgs }:
    let
    system = "x86_64-linux";
    pkgs = nixpkgs.legacyPackages.${system};
    in
    {
    bob =
    pkgs.mkShell
    {
    buildInputs = [
    pkgs.neovim
    pkgs.vim
    ];
    shellHook = ''
    echo "hello mom"
    '';
    };
    };
    }
    ```
    (yes, I know I could push it to github, but I'm extra lazy today)

ความคิดเห็น • 105

  • @Becoming-Human
    @Becoming-Human ปีที่แล้ว +193

    If my arithmetic is correct, you said nix twenty-seven (27) times. You said flake twenty-four (24) times, although technically thirteen (13) of the twenty-four (24) times was in the plural form as flakes. Nix, flakes, and cookies... yummy. :-) Keep up the excellent work with Nix and NixOS, as some of us are learning along with your videos and they help a lot. Thank you.

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +22

      Holy cow! I'm going to have to count tomorrow morning, because It's late where I live, and also I've improvised in some parts of the video. 🍪

    • @Becoming-Human
      @Becoming-Human ปีที่แล้ว +6

      Also, if you have run out of cookies to send me, no problem. As a cookie substitution, I would really appreciate trying to understand how I could get dGPU passthrough to a VM figured out on a laptop, which has an AMD iGPU, and an AMD dGPU. I would like to be able to use NixOS for the base operating system, which would use the AMD iGPU, and then passthrough the AMD dGPU to a Windows VM so that the kids can use the laptop for school, Roblox programming, and gaming. Let me know if you think that this would make a great video, and if not, no worries. Thank you.

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +7

      ​@@Becoming-HumanI've actually managed to setup GPU pass through on NixOS on my Lenovo legion 5 amd + nvidia dgpu about 3 months ago. It was kind of easy on NixOS, because I didn't worry about blacklisting something important. Maybe I'll do a video about it later.

    • @affieuk
      @affieuk ปีที่แล้ว

      @@vimjoyer Yes please to this, although I have intel igpu and nvidia dgpu (optimus). I've installed kvm and also quickemu, but haven't had time to troubleshoot why quickget seems to be downloading the windows iso, but then I don't find it in my home directory... Yes I know I can get it manually.

    • @stefanml90
      @stefanml90 ปีที่แล้ว

      🤣🤣🤣🤣

  • @dasdadasdasd4917
    @dasdadasdasd4917 ปีที่แล้ว +102

    Just last night I was complaining to my friend how I couldn't find a simple explanation how to use flakes, and you posted a video a few hours later. Thank you!

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +31

      I'm making these videos because I'm also frustrated by the lack of documentation.

  • @auntiecarol
    @auntiecarol ปีที่แล้ว +23

    This comment for the YT engagement algorithm: my Emacs bros would be mad at me watching content from someone called Vimjoyer, but I don't care. After having just gone though a painful Debian reinstall, I wondered if there was a better way. Nix might be it. Or it might be Guix (who knows?).
    For the time being, I am grateful for these videos. You have a new subscriber!

    • @Anonymous4045
      @Anonymous4045 11 หลายเดือนก่อน

      Did you end up going with nixos?

    • @auntiecarol
      @auntiecarol 11 หลายเดือนก่อน +3

      @@Anonymous4045Yeah, there are many more examples to work from in comparison to Guix, and the community is larger.

  • @awakeningnow5376
    @awakeningnow5376 6 หลายเดือนก่อน +9

    Your video should be part of a "must watch" list for NixOS beginner tutorials. Thank you for your effort!

  • @raunakchhatwal5350
    @raunakchhatwal5350 ปีที่แล้ว +14

    I had just recently decided that since my Nixos was already working, it probably wasn’t worth it to figure out the motivation behind nix flakes (which I really couldn’t grasp until I watched this video). Thanks, this really explained it.

  • @brianlogan4740
    @brianlogan4740 7 หลายเดือนก่อน +3

    Honestly probably the simplest most matter of fact intro to Flakes I've pulled up so far. Thank you for this!

  • @Brone_K
    @Brone_K ปีที่แล้ว +23

    That is the most useful flakes introduction I have ever seen, good job mate

    • @jeffrey1298
      @jeffrey1298 ปีที่แล้ว +1

      Easily, hands down.

  • @7h3mon
    @7h3mon ปีที่แล้ว +9

    Your microphone is not terrible! You sound clear AF!

  • @TheRationalLifter
    @TheRationalLifter ปีที่แล้ว +3

    Clearest explanation/example of nix flakes I've seen so far. Thanks, really useful!

  • @MiaLovesRod
    @MiaLovesRod ปีที่แล้ว +3

    your channel is gold, i understand about flakes and nixOS more deeply, i hope that you can more videos talking NixOS and its environment.

  • @marcuswest8085
    @marcuswest8085 ปีที่แล้ว +1

    I really appreciate your work VJ. The presentation is excellent - visually clear and painstaking. Seems like I'm not the only person who appreciates this.

  • @gungun974
    @gungun974 ปีที่แล้ว +3

    I finally started to understand what’s Flake are with your video.
    Now it’s time for some practice ❤

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว

      Practice makes perfect

  • @ashimregme
    @ashimregme 7 หลายเดือนก่อน +1

    Such a simple and to-the-point explanation! TYSM.

  • @mumk
    @mumk 10 หลายเดือนก่อน +2

    Thanks, I've always thought that Nix is some witchcraft that is difficult for plebeians to practice, but turns out that it was a huge fallacy. Nix is so simple. Wouldn't have cleared out my doubt without you, many thanks for this splendid video, cheers.

  • @WaterGame7777
    @WaterGame7777 8 หลายเดือนก่อน

    God bless! I'm trying to learn NixOS so I can install it on my system, and flakes were by far the hardest concept for me to learn, but this made it simple to understand. Thank you so much!

  • @pmmeurcatpics
    @pmmeurcatpics ปีที่แล้ว +2

    I see that the playlist already has a lot of videos, but im still going to comment to make TH-cam recommend this playlist to other users just it did to me:)

  • @benarcher372
    @benarcher372 11 หลายเดือนก่อน +1

    Finally, a good nix flake description! Thx

  • @CTWilliams89
    @CTWilliams89 ปีที่แล้ว +1

    Loving the content, subbed and looking forward to more as I just discovered nix!

  • @ChrisMcDonough
    @ChrisMcDonough ปีที่แล้ว +2

    Great series so far! You have a knack for explaining this stuff.

  • @gbember3470
    @gbember3470 ปีที่แล้ว +2

    Thank you for the video! I hope your channel gets more known

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว

      Thanks for kind words!

  • @A-zn3wh
    @A-zn3wh 9 หลายเดือนก่อน +1

    Very well explained. Your initial comment about being on the 3rd page of still holds true nearly a year later.

  • @luckyspiff
    @luckyspiff ปีที่แล้ว +1

    Good work, thank you! Please continue this series!

  • @user-db4dd4ze3n
    @user-db4dd4ze3n ปีที่แล้ว +2

    The best explanation of flakes I have seem

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +1

      Glad you liked it!

  • @AminD0
    @AminD0 ปีที่แล้ว +2

    Dude! Very nicely explained. Thanks

  • @mr2octavio
    @mr2octavio ปีที่แล้ว +3

    Thank you for the video!
    Consider uploading it to the wiki or docs

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว

      I'm not satisfied with the quality enough for wiki or docs 😅

    • @sabergo1
      @sabergo1 ปีที่แล้ว +4

      @@vimjoyer I'd say its better than what exists now. Thanks for the tutorial.

    • @mr2octavio
      @mr2octavio ปีที่แล้ว +1

      ​@@sabergo1I agree, better fall forward

  • @jaydelux2086
    @jaydelux2086 ปีที่แล้ว +2

    this was a very good explanation thank you

  • @RegularTetragon
    @RegularTetragon 3 หลายเดือนก่อน +1

    Nix flakes are the monad of packaging formats

  • @UnabashedOops
    @UnabashedOops ปีที่แล้ว +5

    My major concern with flakes is that in today’s age keeping your system up to date with security fixes is paramount. I would want to run updates on all my flakes weekly in an automated fashion. I wish the cli had an easy option for that.

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +1

      I think `system.autoUgrade` can work with flakes. Relevant discourse thread - discourse.nixos.org/t/best-practices-for-auto-upgrades-of-flake-enabled-nixos-systems/31255

    • @UnabashedOops
      @UnabashedOops ปีที่แล้ว

      Thank you!

  • @CarlosVixil
    @CarlosVixil ปีที่แล้ว +2

    Fine! I'll subscribe. I think adding "- what are nix flakes?" to the title or description might help with SEO. Which Nix seems to be avoiding.

  • @adhominems
    @adhominems 2 หลายเดือนก่อน

    Thanks for this video this was very helpful!

  • @zacharyquinn3676
    @zacharyquinn3676 ปีที่แล้ว +1

    Keep the nix videos coming!

  • @astronomer404
    @astronomer404 7 หลายเดือนก่อน +1

    Great content, keep it up.

  • @florianthesnow
    @florianthesnow ปีที่แล้ว +1

    By far the best explanation of flakes out there! And I have been looking for a long time!

  • @wyfyj
    @wyfyj ปีที่แล้ว +1

    Thank you so much for the video

  • @johanvandermerwe7687
    @johanvandermerwe7687 ปีที่แล้ว +1

    This was excellent!!

  • @natural-selection-69
    @natural-selection-69 ปีที่แล้ว +8

    KEEP THEM COMING!
    I'd appreciate it if you made a video explaining nix profile, home-manager and how wrapping configuration.nix in nix flake eliminates the need of updating nix-channel

    • @jdecicco91
      @jdecicco91 ปีที่แล้ว

      Yes please, +1 for this^

  • @bepobepobepo
    @bepobepobepo ปีที่แล้ว +1

    Please keep making nix videos!

  • @The8BitHero
    @The8BitHero 8 หลายเดือนก่อน +2

    This helped understand it a bit more. I would love if you can show how to add the ability to install "unfree" packages using home manager and flakes. I've been searching and just can't figure it out.

  • @wyfyj
    @wyfyj ปีที่แล้ว +1

    Thank you for the video

  • @pablo_alonso_ramos_henao3341
    @pablo_alonso_ramos_henao3341 ปีที่แล้ว +2

    Thx dude.

  • @brainstormsurge154
    @brainstormsurge154 9 หลายเดือนก่อน +3

    Really loved the bob example just to show how to do it with any variable. Although I'm curious if you could do "bob.default" so you don't have to use the "#" in the command or would it need to be the whole "devshells.bob.default". What if it was just "devShells.bob"? Just curious since I'm just learning this.

    • @vimjoyer
      @vimjoyer  9 หลายเดือนก่อน

      Yeah, the convention is to have something.default, so it would be devshells.default

  • @rochecompaan
    @rochecompaan 9 หลายเดือนก่อน +1

    Thanks for a great intro to flakes! I'm not following what you mean with "if you named your dev shell bob ... you will have to use bob as key when running nix develop". What is a dev shell and how do you name it?

  • @schendelenterprises2955
    @schendelenterprises2955 ปีที่แล้ว +4

    I want a cookie too ;-)

  • @AngriestEwok
    @AngriestEwok 6 หลายเดือนก่อน +1

    Thanks, very interesting. Something I'm confused about is what do you do if you want to upgrade to the latest stable version of a package or even update the lot? I get the idea of fixing versions but after a while we need to update as versions are no longer supported with bug and security fixes.

    • @vimjoyer
      @vimjoyer  6 หลายเดือนก่อน

      Check the latest flakes video on the channel, it will answer your questions

  • @adiSuper94
    @adiSuper94 หลายเดือนก่อน

    At 1:59, you say that the import essentially makes the shell.nix not deterministically reproducible. But we can pin the nixpkgs by fetchTarBalling a specific version
    Not sure if this always existed, or if it is a new feature. But anyway would it still be justified/reasonable to use nix flakes instead of the default nix shell ?

  • @martinRandomName
    @martinRandomName 5 หลายเดือนก่อน +1

    I guess the exporting a default package is a newer feature?

  • @witalbum
    @witalbum ปีที่แล้ว +2

    Very good video! What fonts you use at 0:40 and 1:25 to show the command?

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +3

      Jetbrains mono

  • @alexandersafiullin9820
    @alexandersafiullin9820 ปีที่แล้ว +1

    02:57 We can see that no nixpkgs input specified for the flake. But it somehow got used later in the outputs. Also flake.lock got those nixpkgs pinned to some revision. Tell me, guru, what revision is gonna be used in this case?

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +1

      If inputs field is not specified, nix just assumes you want a single nixpkgs input. IIRC it uses "github:nixos/nixpkgs/nixpkgs-unstable" by default.

  • @diagram_sock
    @diagram_sock ปีที่แล้ว +1

    I'm about to hop on Nix

  • @rijandhakal9228
    @rijandhakal9228 10 หลายเดือนก่อน +2

    Could you do a video on making a proper FHS file-system inside of nix? Something that can help bridge the gap when the packages of another ecosystem are not fully supported on Nix, it seems like a FHS system is necessary.

    • @vimjoyer
      @vimjoyer  10 หลายเดือนก่อน

      You can use buildFHSEnv (I'll make a video about it sooner or later)

  • @zukxxxx0
    @zukxxxx0 7 หลายเดือนก่อน +1

    Is it possible for making videos to guide set up nix package manager in macos, setting up nix flakes, home manager and the nix profile.
    I am tired of reading blogs and 50/50 successful at setting up the above mentioned

  • @timj11dude
    @timj11dude หลายเดือนก่อน +1

    Do you still recommend using Flakes today? Since they are still considered experimental?

    • @vimjoyer
      @vimjoyer  หลายเดือนก่อน

      yes

  • @gustavojoaquin_arch
    @gustavojoaquin_arch 4 หลายเดือนก่อน +1

    based, i will switch to nix from arch btw

    • @deltamico
      @deltamico 2 หลายเดือนก่อน

      you can use nix on arch no?

    • @gustavojoaquin_arch
      @gustavojoaquin_arch 2 หลายเดือนก่อน

      @deltamico yes but it's more limited, having only nixos installed is better, but the libertarian communist are ruining nixos, Arch is better

  • @yuu0141TAS
    @yuu0141TAS ปีที่แล้ว +1

    funny i start looking into nixos and this video just got uploaded recently

  • @Sankaritarina89
    @Sankaritarina89 ปีที่แล้ว +2

    why one repo per flake? can i not have one repo for all flakes or is that a bad thing? (i have not yet started using nixos, I will first watch all your videos :)

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +3

      I mean one flake for one separate project, you probably don't want your python project update break your rust development environment. Having 1 flake for both home-manager and NixOS on the other hand is a good idea.

    • @Sankaritarina89
      @Sankaritarina89 ปีที่แล้ว +2

      @@vimjoyerok I understand! that makes sense

  • @МішаняБ
    @МішаняБ ปีที่แล้ว +1

    🎉

  • @luigitech3169
    @luigitech3169 ปีที่แล้ว +1

    Thanks for the video, what i don't understand is (coming from Docker) where to store or mount persistent data. I'd like to mount an "host" directory where to keep important data outside the flake, is possible to do it?
    I mean the equivalent of docker volumes

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +1

      These development environments are not actually containers, they just modify some environment variables such as $PATH and $LD_LIBRARY_PATH to achieve what you see. They don't have their own storage, and you can access all your data. Flakes are just a way to declare those environments.
      That being said, you can build your docker images with nix: nixos.wiki/wiki/Docker
      You could use flakes to declare those as well.

    • @luigitech3169
      @luigitech3169 ปีที่แล้ว

      @@vimjoyer thanks now i understand

  • @hobbyfor
    @hobbyfor ปีที่แล้ว +1

    sorry, i didn't get know what the power in flake ,and i was try to put My H-M in it ,it is not working ,btw nice video

  • @abbcc555
    @abbcc555 7 หลายเดือนก่อน

    So after this the vim command is still not available, what's the point.

  • @fire17102
    @fire17102 ปีที่แล้ว +1

    Thanks for the inspiration, just started on a new clean refurbished laptop and installed nixos on wsl. Trying to get ohmyzsh to work declaratively with plugins. Trying to get home manager to work... What a rabbit hole.. hope to make it to the other side with and get reproducible pretty zsh env.
    Anyone has a flake for that?? Thanks and all the best

    • @looptime9525
      @looptime9525 ปีที่แล้ว

      Don't you call --zsh flag when running the command?

  • @biker1500
    @biker1500 ปีที่แล้ว +1

    the video is pretty confusing and very hard to watch, this video is not zoomer friendly

    • @vimjoyer
      @vimjoyer  ปีที่แล้ว +1

      sorry

    • @lennyescott
      @lennyescott ปีที่แล้ว

      maybe you shouldn't use nix?!

    • @biker1500
      @biker1500 ปีที่แล้ว

      @@lennyescott why

  • @TimmyJose-n4t
    @TimmyJose-n4t 10 หลายเดือนก่อน

    Why is the volume so low?