diff --git a/default.nix b/default.nix index 0b1d004..6e7dafe 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,6 @@ { imports = [ ./modules/alacritty.nix - ./modules/backports.nix ./modules/baseline.nix ./modules/cli.nix ./modules/gnome.nix diff --git a/modules/backports.nix b/modules/backports.nix deleted file mode 100644 index 293093c..0000000 --- a/modules/backports.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ lib, ... }: -let - rev = "00783f3f041491fc8b290da3494187b7f47100c0"; - - backport = (name: path: sha256: self: super: { - ${name} = super.callPackage - (super.fetchurl { - inherit sha256; - url = "https://raw.githubusercontent.com/NixOS/nixpkgs/${rev}/pkgs/${path}"; - }) - { }; - }); - -in -{ - nixpkgs.overlays = - [ - (backport "powerline-go" "tools/misc/powerline-go/default.nix" "3f5bceb483167dfea7bfb88bd3226c375be9564a8b321096bf1456c905acb90b") - ]; -}