I’m starting to have a lot of flake inputs in my flake.nix file, and it’s starting to get really cluttered. I’m wondering if there’s a way to separate my inputs into multiple files so it looks cleaner. I’ve tried to look it up but couldn’t really find anything abt it

Edit: Well as it turns out it’s not something possible yet, apparently the flake.nix file isn’t parsed like regular nix files and doesn’t support stuff like import

  • algernon@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 day ago

    It’s complex, because it does a lot of things, and it evolved over the past few years. The basics are very, very simple:

    #+begin_src nix :tangle out/flake.nix :noweb no-export :noweb-prefix no :mkdirp t
    {
      inputs = {
        <<flake-inputs>>
      };
    
      outputs = { self, nixpkgs, ... }@inputs: {
        <<flake-outputs>>
      };
    }
    #+end_src
    

    In some other file, you can then do:

    #+begin_src nix :noweb-ref flake-inputs
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
    #+end_src
    

    And voila, you now have:

    {
      inputs = {
        nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
      };
    
      // ...rest of the flake
    }
    

    How you organize your org documents, is entirely up to you. The trick is that this lets you split it up as you see fit, and you are no longer restricted by what the language or any framework built on top of it can provide.

    • claymorwan@lemmy.blahaj.zoneOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 day ago

      o yea now i see better how it works, all i gotta do is learn some emacs stuff and then i should be able to do it, thanks a lot!