cfcd52ff70
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
15 lines
202 B
Nix
15 lines
202 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.foot.enable = true;
|
|
|
|
test.stubs.foot = { };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/foot
|
|
'';
|
|
};
|
|
}
|