11 lines
208 B
Nix
11 lines
208 B
Nix
{
|
|
programs.foot.enable = true;
|
|
|
|
xdg.desktopEntries = builtins.listToAttrs (map (x: {
|
|
name = "${x}";
|
|
value = {
|
|
name = "";
|
|
noDisplay = true;
|
|
};
|
|
}) ["footclient" "foot-server"]);
|
|
}
|