Merge branch 'master' of ssh://git.joshuabell.xyz:3032/nvim

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-01-14 04:03:43 -06:00
commit 184e7327aa
2 changed files with 2 additions and 3 deletions

1
flake.lock generated
View file

@ -11,7 +11,6 @@
},
"original": {
"owner": "nixos",
"ref": "master",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -3,7 +3,7 @@
# Nixpkgs / NixOS version to use.
inputs = {
# nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs.url = "github:nixos/nixpkgs/master";
nixpkgs.url = "github:nixos/nixpkgs";
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
@ -155,7 +155,7 @@
# Utilities
inherit (nixpkgs) lib;
# Define the systems to support (all Linux systems exposed by nixpkgs)
systems = lib.intersectLists lib.systems.flakeExposed lib.platforms.linux;
systems = lib.unique (lib.concatLists [ lib.systems.flakeExposed lib.platforms.linux ]);
forAllSystems = lib.genAttrs systems;
# Create a mapping from system to corresponding nixpkgs : https://nixos.wiki/wiki/Overlays#In_a_Nix_flake
nixpkgsFor = forAllSystems (system: (nixpkgs.legacyPackages.${system}.extend rustOverlay));