8 lines
183 B
Nix
8 lines
183 B
Nix
{ config, ... }:
|
|
{
|
|
programs.foot = {
|
|
enable = true;
|
|
server.enable = true;
|
|
};
|
|
xdg.configFile."foot/foot.ini".source = (config.lib.file.mkOutOfStoreSymlink ./foot.ini);
|
|
}
|