8 lines
164 B
Nix
8 lines
164 B
Nix
|
{ depot, lib, pkgs, ... }:
|
||
|
{
|
||
|
imports = [ ./common.nix ];
|
||
|
|
||
|
programs.bash.enableVteIntegration = lib.mkForce false;
|
||
|
programs.ntfy.enable = lib.mkForce false;
|
||
|
}
|