ff616b2734
Foot is a fast terminal emulator for Wayland. It can optionally be run in a client-server configuration. There are three unit tests to handle an empty configuration, the default configuration, and systemd service file generation.
17 lines
272 B
Nix
17 lines
272 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.foot.enable = true;
|
|
|
|
nixpkgs.overlays =
|
|
[ (self: super: { foot = pkgs.writeScriptBin "dummy-foot" ""; }) ];
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/foot
|
|
'';
|
|
};
|
|
}
|