fixed bugs this time hopefully

This commit is contained in:
twoneis 2023-10-30 15:41:12 +01:00
parent ba55307699
commit a01007a1b4

View file

@ -2,10 +2,10 @@
description = "A very basic flake"; description = "A very basic flake";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.05" nixpkgs.url = "github:nixos/nixpkgs/nixos-21.05";
}; };
outputs = { self, nixpkgs }: { outputs = { self, nixpkgs }:
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = import nixpkgs {
@ -21,5 +21,4 @@
]; ];
}; };
}; };
};
} }