This commit is contained in:
Shelvacu
2024-09-13 21:30:56 -07:00
parent 6bb5486180
commit ccba74fb9c

View File

@@ -89,11 +89,11 @@
...
}@inputs:
let
blarg = {
lib = import "${nixpkgs}/lib";
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
};
lib = import "${nixpkgs}/lib";
pkgs = import nixpkgs ({ system = "x86_64-linux"; } // blarg);
defaultInputs = {
inherit (inputs)
self
@@ -304,7 +304,10 @@
// (inputs.flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
formatter = pkgs.nixfmt-rfc-style;