mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 18:05:37 +00:00
temp: disable terminfo on flame due to broken contour in nixpkgs
This commit is contained in:
parent
13972b1d66
commit
b4c08adea4
@ -1,4 +1,4 @@
|
|||||||
{ config, lib, ... }: {
|
{ config, pkgs, lib, ... }: {
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
publicKey = lib.mkOption {
|
publicKey = lib.mkOption {
|
||||||
@ -32,7 +32,10 @@
|
|||||||
services.sshguard.enable = true;
|
services.sshguard.enable = true;
|
||||||
|
|
||||||
# Add terminfo for SSH from popular terminal emulators
|
# Add terminfo for SSH from popular terminal emulators
|
||||||
environment.enableAllTerminfo = true;
|
# Fix: terminfo now installs contour, which is broken on ARM
|
||||||
|
# - https://github.com/NixOS/nixpkgs/pull/253334
|
||||||
|
# - Will disable until fixed
|
||||||
|
environment.enableAllTerminfo = pkgs.stdenv.isLinux && pkgs.stdenv.isx86_64;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user