Files
nixos/modules/nixos/cli-environment.nix
2025-02-06 18:25:39 +01:00

43 lines
572 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.services.cli-environment;
in
{
imports = [ ];
options.services.cli-environment = {
enable = mkEnableOption "enable cli-environment";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
vim
wget
killall
htop
p7zip
unzip
unrar
helix
direnv
git
bat
tree
imv
eza # ?
appimage-run
nh
openssl
nixfmt-rfc-style
nil
];
programs.fish.enable = true;
};
}