🧹 remove unneeded inputs

dev-docs
Moritz Böhme 2022-08-20 14:11:56 +02:00
parent 33b21c2bde
commit 1a438c7cdf
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
4 changed files with 1 additions and 20 deletions

View File

@ -10,11 +10,6 @@
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
stable.url = "github:nixos/nixpkgs/nixos-22.05";
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
utils = {
@ -37,16 +32,6 @@
inputs.nixpkgs.follows = "nixpkgs";
};
statix = {
url = "github:nerdypepper/statix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs-review-checks = {
url = "github:SuperSandro2000/nixpkgs-review-checks";
inputs.nixpkgs.follows = "nixpkgs";
};
comma = {
url = "github:nix-community/comma";
inputs.nixpkgs.follows = "nixpkgs";
@ -102,7 +87,6 @@
self.overlays.default
inputs.utils.overlay
inputs.emacs-overlay.overlay
inputs.nur.overlay
];
###############

View File

@ -38,8 +38,6 @@ with lib;
nix-boot = "doas nixos-rebuild boot --flake ~/.dotfiles";
nix-lock = "pushd ~/.dotfiles && nix flake update && popd";
nixpkgs-review = "nixpkgs-review-checks";
latexwatch = ''find -type f -name "*.tex" | entr -c latexmk -pdf -silent'';
};
variables = { EDITOR = "vim"; };

View File

@ -94,7 +94,7 @@ with lib; {
environment.systemPackages = with pkgs; [
# nix
nixpkgs-review-checks
nixpkgs-review
# ripping
abcde

View File

@ -12,5 +12,4 @@
inherit (prev) system;
config.allowUnfree = true;
};
nur = import inputs.nur { inherit (prev) system; };
}