purge nixfmt flake

This commit is contained in:
Gerg-L 2024-04-04 21:01:42 -04:00
parent 6e6ed32425
commit 40382070b3
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
5 changed files with 39 additions and 1260 deletions

1278
flake.lock generated

File diff suppressed because it is too large Load diff

View file

@ -45,13 +45,6 @@
repo = "disko";
inputs.nixpkgs.follows = "unstable";
};
nixfmt = {
type = "github";
owner = "piegamesde";
repo = "nixfmt";
ref = "rfc101-style";
inputs.nixpkgs.follows = "unstable";
};
#my own packages
spicetify-nix = {
type = "github";

View file

@ -79,9 +79,11 @@
via
qmk
gh
nixfmt-rfc-style
;
inherit (nvim-flake.packages) neovim;
inherit (self.packages) lint nixfmt;
inherit (self.packages) lint;
librewolf = pkgs.librewolf.override { cfg.speechSynthesisSupport = false; };
nixpkgs-review = pkgs.nixpkgs-review.override { nix = config.nix.package; };
};

View file

@ -1,6 +1,6 @@
{
inputs,
writeShellApplication,
nixfmt-rfc-style,
deadnix,
statix,
fd,
@ -9,7 +9,7 @@
writeShellApplication {
name = "lint";
runtimeInputs = [
inputs.self.packages.nixfmt
nixfmt-rfc-style
deadnix
statix
fd

View file

@ -1,6 +0,0 @@
{ inputs, nixfmt }:
(nixfmt.overrideAttrs {
version = "0.6.0-${inputs.nixfmt.shortRev}";
src = inputs.nixfmt;
})