nix fmt
This commit is contained in:
parent
0777ef46aa
commit
6befc79c8e
14 changed files with 189 additions and 198 deletions
|
@ -1,20 +1,18 @@
|
|||
# This overlay is used for overriding upstream packages.
|
||||
self: super:
|
||||
let
|
||||
self: super: let
|
||||
sources = import ../../nix/sources.nix;
|
||||
|
||||
nixpkgs-master = import <nixpkgs-master> { inherit (super) config; };
|
||||
nixpkgs-master = import <nixpkgs-master> {inherit (super) config;};
|
||||
nixpkgs-unstable =
|
||||
import <channels-nixos-unstable> { inherit (super) config; };
|
||||
in
|
||||
{
|
||||
import <channels-nixos-unstable> {inherit (super) config;};
|
||||
in {
|
||||
inherit nixpkgs-master;
|
||||
inherit nixpkgs-unstable;
|
||||
|
||||
# alacritty = nixpkgs-master.alacritty;
|
||||
alacritty = super.stdenv.mkDerivation {
|
||||
name = "alacritty-custom";
|
||||
buildInputs = [ super.makeWrapper ];
|
||||
buildInputs = [super.makeWrapper];
|
||||
phases = "installPhase";
|
||||
installPhase = ''
|
||||
makeWrapper ${super.alacritty}/bin/alacritty $out/bin/alacritty \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue