code review

This commit is contained in:
Miguel Palhas
2024-10-04 16:00:19 +01:00
parent 630c588558
commit cbf66e1699
+6 -3
View File
@@ -32,7 +32,9 @@
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
}; };
outputs = { self, nixpkgs, home-manager, catppuccin, foundry, ... }@inputs: outputs =
{ self, nixpkgs, home-manager, utils, catppuccin, foundry, ... }@inputs:
utils.lib.eachDefaultSystem (system:
let let
inherit (self) outputs; inherit (self) outputs;
x86 = nixpkgs.legacyPackages.x86_64-linux; x86 = nixpkgs.legacyPackages.x86_64-linux;
@@ -53,7 +55,8 @@
overlays = [ overlays = [
foundry.overlay foundry.overlay
(final: prev: { (final: prev: {
nvchad = inputs.nvchad4nix.packages."${pkgs.system}".nvchad; nvchad =
inputs.nvchad4nix.packages."${pkgs.system}".nvchad;
}) })
]; ];
}; };
@@ -85,5 +88,5 @@
}; };
devShells = forEachPkg (pkgs: import ./shell.nix { inherit pkgs; }); devShells = forEachPkg (pkgs: import ./shell.nix { inherit pkgs; });
}; });
} }