update helix to 24.3

This commit is contained in:
Schrottkatze 2024-04-03 18:37:15 +02:00
parent c5f02511eb
commit c1d4aba9c3
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc
3 changed files with 28 additions and 4 deletions

View file

@ -4,6 +4,7 @@
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/nixos-23.11";
nixpkgs-unstable-small.url = "nixpkgs/nixos-unstable-small";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -26,12 +27,14 @@
self,
nixpkgs,
nixpkgs-stable,
nixpkgs-unstable-small,
home-manager,
nixos-hardware,
mac-brcm-fw,
...
} @ inputs: let
pkgs = nixpkgs.legacyPackages."x86_64-linux";
pkgs-unstable-small = nixpkgs-unstable-small.legacyPackages."x86_64-linux";
in {
devShells."x86_64-linux".default = pkgs.mkShell {
buildInputs = [
@ -49,7 +52,7 @@
nixosConfigurations = {
monosodium-glutamate-g = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit inputs pkgs-unstable-small;
};
system = "x86_64-linux";
modules = [
@ -71,7 +74,7 @@
};
catbook-j = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit inputs pkgs-unstable-small;
};
system = "x86_64-linux";
modules = [
@ -93,7 +96,7 @@
};
potatobook-g = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit inputs pkgs-unstable-small;
};
system = "x86_64-linux";
modules = [