2021-05-14 22:42:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.foot.enable = true;
|
|
|
|
|
|
|
|
nixpkgs.overlays =
|
|
|
|
[ (self: super: { foot = pkgs.writeScriptBin "dummy-foot" ""; }) ];
|
|
|
|
|
|
|
|
nmt.script = ''
|
2021-07-01 20:05:37 +02:00
|
|
|
assertPathNotExists home-files/.config/foot
|
2021-05-14 22:42:00 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|