1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-28 02:27:44 +00:00
ncc/modules/common/editor/nano.nix
2025-07-20 00:29:28 +03:00

7 lines
154 B
Nix

{ config, lib, ... }: let
inherit (lib) disabled optionalAttrs;
in {
programs = optionalAttrs config.isLinux {
nano = disabled; # Garbage.
};
}