Created
July 3, 2026 19:54
-
-
Save vai/1bdfa7b3bbcf8dc97595bf681b9f898e to your computer and use it in GitHub Desktop.
Root inputs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| 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