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