ac862dfc1f
added it to configuration
38 lines
504 B
Nix
38 lines
504 B
Nix
{
|
|
inputs,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.workstation.development;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
gitFull
|
|
neovim
|
|
nixfmt
|
|
nixd
|
|
kubectl
|
|
jq
|
|
tmux
|
|
vscode
|
|
devenv
|
|
xh
|
|
nodejs
|
|
obsidian
|
|
];
|
|
|
|
# Nix LSP
|
|
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
|
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
|
|
};
|
|
}
|