mirror of
https://github.com/RGBCube/ncc
synced 2025-07-28 02:27:44 +00:00
7 lines
154 B
Nix
7 lines
154 B
Nix
{ config, lib, ... }: let
|
|
inherit (lib) disabled optionalAttrs;
|
|
in {
|
|
programs = optionalAttrs config.isLinux {
|
|
nano = disabled; # Garbage.
|
|
};
|
|
}
|