mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
21 lines
408 B
Nix
21 lines
408 B
Nix
|
# All of my text editors (and IDEs) modules are to be put here.
|
||
|
# From Visual Studio Code, Emacs, Neovim, and whatnot.
|
||
|
# The entryway to all of your text editors and IDEs.
|
||
|
{ config, options, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
{
|
||
|
imports = [
|
||
|
./emacs.nix
|
||
|
./neovim.nix
|
||
|
./vscode.nix
|
||
|
];
|
||
|
|
||
|
options.modules.editors = {
|
||
|
default = mkOption {
|
||
|
type = types.str;
|
||
|
default = "vim";
|
||
|
};
|
||
|
};
|
||
|
}
|