From 1a438c7cdf229e8eb97dcb0bd9eeb0048f97845b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Sat, 20 Aug 2022 14:11:56 +0200 Subject: [PATCH] :broom: remove unneeded inputs --- flake.nix | 16 ---------------- modules/profiles/base.nix | 2 -- modules/profiles/desktop.nix | 2 +- overlays/default.nix | 1 - 4 files changed, 1 insertion(+), 20 deletions(-) diff --git a/flake.nix b/flake.nix index dec5eaf..b833ccf 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; ############### diff --git a/modules/profiles/base.nix b/modules/profiles/base.nix index c482423..cf24373 100644 --- a/modules/profiles/base.nix +++ b/modules/profiles/base.nix @@ -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"; }; diff --git a/modules/profiles/desktop.nix b/modules/profiles/desktop.nix index b515bfc..0e2da44 100644 --- a/modules/profiles/desktop.nix +++ b/modules/profiles/desktop.nix @@ -94,7 +94,7 @@ with lib; { environment.systemPackages = with pkgs; [ # nix - nixpkgs-review-checks + nixpkgs-review # ripping abcde diff --git a/overlays/default.nix b/overlays/default.nix index 54e8e1f..b587cb5 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -12,5 +12,4 @@ inherit (prev) system; config.allowUnfree = true; }; - nur = import inputs.nur { inherit (prev) system; }; }