diff options
| author | Fuwn <[email protected]> | 2024-10-15 05:50:27 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-15 05:50:27 -0700 |
| commit | 1c41976d6fff07530ffaaadd4e119fd1dc5a47ac (patch) | |
| tree | 9a4f385ce9e8cbd4af60a6b09e9550c8f8f4036a /flake.nix | |
| parent | lock: pia (diff) | |
| download | nixos-config-1c41976d6fff07530ffaaadd4e119fd1dc5a47ac.tar.xz nixos-config-1c41976d6fff07530ffaaadd4e119fd1dc5a47ac.zip | |
flake: pin inputs of chaotic
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 42 |
1 files changed, 41 insertions, 1 deletions
@@ -80,8 +80,8 @@ }; inputs = { - chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; # TODO: inputs flake-root.url = "github:srid/flake-root"; + flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/=0.1.5.tar.gz"; just-flake.url = "github:juspay/just-flake"; nix-filter.url = "github:numtide/nix-filter"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; @@ -119,6 +119,18 @@ }; }; + chaotic = { + url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; + + inputs = { + fenix.follows = "fenix"; + flake-schemas.follows = "flake-schemas"; + home-manager.follows = "home-manager"; + jovian.follows = "jovian"; + nixpkgs.follows = "nixpkgs"; + }; + }; + devenv = { url = "github:cachix/devenv"; @@ -136,6 +148,15 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + fenix = { + url = "github:nix-community/fenix"; + + inputs = { + nixpkgs.follows = "nixpkgs"; + rust-analyzer-src.follows = "rust-analyzer-src"; + }; + }; + flake-compat = { url = "github:edolstra/flake-compat"; flake = false; @@ -199,6 +220,15 @@ }; }; + jovian = { + url = "github:Jovian-Experiments/Jovian-NixOS"; + + inputs = { + nix-github-actions.follows = "nix-github-actions"; + nixpkgs.follows = "nixpkgs"; + }; + }; + nix-alien = { url = "github:thiagokokada/nix-alien"; @@ -221,6 +251,11 @@ }; }; + nix-github-actions = { + url = "github:zhaofengli/nix-github-actions/matrix-name"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nix-index-database = { url = "github:nix-community/nix-index-database"; inputs.nixpkgs.follows = "nixpkgs"; @@ -313,6 +348,11 @@ }; }; + rust-analyzer-src = { + url = "github:rust-lang/rust-analyzer/nightly"; + flake = false; + }; + sops-nix = { url = "github:Mic92/sops-nix"; |