Skip to content

Commit

Permalink
chore: flake fixes with fenix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 10, 2024
1 parent d02f110 commit 4e56ff4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 19 deletions.
37 changes: 20 additions & 17 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,21 @@
inputs = {
nixpkgs = { url = "github:nixos/nixpkgs/nixos-23.11"; };

fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};

flakebox = {
url = "github:rustshop/flakebox";
url = "github:dpc/flakebox?rev=34ce1b8f8c60661e06dc54ce07deb1ff0ed2b7f5";
inputs.nixpkgs.follows = "nixpkgs";
inputs.fenix.follows = "fenix";
};

flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs, flakebox, flake-utils }:
outputs = { self, nixpkgs, flakebox, fenix, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
Expand Down

0 comments on commit 4e56ff4

Please sign in to comment.