big changes to neovim, might streamline later, also some term environment settings
This commit is contained in:
20
system/modules/utils/misc/default.nix
Normal file
20
system/modules/utils/misc/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf mkEnableOption;
|
||||
cfg = config.modules.utils.misc;
|
||||
in {
|
||||
options = {
|
||||
modules.utils.misc.enable = mkEnableOption "Enables miscellaneous pacakges";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
nodejs_22
|
||||
ripgrep
|
||||
fd
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user