Litenet-Nix-Infra/modules/vm-overrides/resize.nix
2024-12-16 12:53:40 +01:00

9 lines
271 B
Nix

{ lib, pkgs, ... }:
derivation {
name = "resize";
version = "1.0";
builder = "${pkgs.bash}/bin/bash";
args = [ "-c" "${pkgs.coreutils}/bin/mkdir -p $out/bin; ${pkgs.coreutils}/bin/cp ${pkgs.xterm}/bin/.resize-wrapped $out/bin/resize" ];
system = pkgs.system;
}