9 lines
201 B
Nix
9 lines
201 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.foot = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
environment.etc."xdg/autostart/foot-server.desktop".enable = false;
|
|
}
|