stuff
This commit is contained in:
11
flake.nix
11
flake.nix
@@ -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;
|
||||
|
Reference in New Issue
Block a user