Switch from gnome-terminal to alacritty.

This commit is contained in:
Kevin Baensch 2020-07-01 14:42:30 +02:00
parent 5c266bc532
commit 6c6d1d1b25
Signed by: derped
GPG key ID: C0F1D326C7626543
5 changed files with 10 additions and 7 deletions

View file

@ -2,7 +2,6 @@
{
services.cron.enable = false;
programs.gnome-terminal.enable = true;
networking.dhcpcd.extraConfig = "noarp";

View file

@ -1,10 +1,14 @@
{ pkgs, ... }:
{
programs.gnome-terminal.enable = true;
let
gitpkgs = import /nixpkgs {};
in {
services.cron.enable = false;
networking.dhcpcd.extraConfig = "noarp";
nixpkgs.config.packageOverrides = pkgs: rec{
SDL2 = pkgs.SDL2.override { udevSupport = true; fcitxSupport = true; };
ffmpeg_4 = gitpkgs.ffmpeg-full // { bin = gitpkgs.ffmpeg-full; };
};
system.stateVersion = "19.09";
}