Skip to content

Instantly share code, notes, and snippets.

@vai
Created July 3, 2026 19:54
Show Gist options
  • Select an option

  • Save vai/1bdfa7b3bbcf8dc97595bf681b9f898e to your computer and use it in GitHub Desktop.

Select an option

Save vai/1bdfa7b3bbcf8dc97595bf681b9f898e to your computer and use it in GitHub Desktop.
Root inputs
{
nixConfig = {
extra-substituters = [ "https://noctalia.cachix.org" ];
extra-trusted-public-keys = [
"noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4="
];
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
home-manager = {
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
nixvim = {
url = "github:nix-community/nixvim/nixos-26.05";
};
nvix.url = "github:semi710/nvix";
tokyodark = {
url = "github:tiagovla/tokyodark.nvim";
flake = false;
};
zerobyte-nix.url = "github:utensils/zerobyte-nix";
};
outputs =
{
self,
nixpkgs,
nixpkgs-unstable,
home-manager,
zerobyte-nix,
...
}@inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment