Skip to content

Commit

Permalink
fix: updated nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
huuff committed Oct 29, 2024
1 parent 968c7a3 commit 23d7ac7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 25 deletions.
32 changes: 16 additions & 16 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "My templates for quickly bootstrapping a working environment";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.05";
pre-commit.url = "github:cachix/git-hooks.nix";
treefmt.url = "github:numtide/treefmt-nix";
systems.url = "github:nix-systems/x86_64-linux";
Expand Down
6 changes: 1 addition & 5 deletions latex/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@
in
{

devShell =
with pkgs;
mkShell {
buildInputs = [ texlive.combined.scheme-full ];
};
devShell = with pkgs; mkShell { buildInputs = [ texlive.combined.scheme-full ]; };
}
);
}
4 changes: 1 addition & 3 deletions leptos/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@
utils.lib.eachDefaultSystem (
system:
let
overlays = [
(import rust-overlay)
];
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
rustPkgs = pkgs.rust-bin.stable.latest.default.override {
targets = [
Expand Down

0 comments on commit 23d7ac7

Please sign in to comment.