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-06-10 18:40:36 +02:00
|
|
|
assertFileExists home-files/.config/foot/foot.ini
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/foot/foot.ini \
|
|
|
|
${builtins.toFile "test" ""}
|
2021-05-14 22:42:00 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|