🧹 remove unneeded inputs
This commit is contained in:
parent
33b21c2bde
commit
1a438c7cdf
4 changed files with 1 additions and 20 deletions
16
flake.nix
16
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
|
||||
];
|
||||
|
||||
###############
|
||||
|
|
|
@ -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"; };
|
||||
|
|
|
@ -94,7 +94,7 @@ with lib; {
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# nix
|
||||
nixpkgs-review-checks
|
||||
nixpkgs-review
|
||||
|
||||
# ripping
|
||||
abcde
|
||||
|
|
|
@ -12,5 +12,4 @@
|
|||
inherit (prev) system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
nur = import inputs.nur { inherit (prev) system; };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue