1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 02:57:44 +00:00

editors: init

This commit is contained in:
RGBCube 2025-07-19 22:06:05 +03:00
parent c7abad00b5
commit 8bf1de0fdc
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
6 changed files with 284 additions and 263 deletions

View file

@ -0,0 +1,7 @@
{ config, lib, ... }: let
inherit (lib) disabled optionalAttrs;
in {
programs = optionalAttrs config.isLinux {
nano = disabled; # Garbage.
};
}