plinth-infra/flake/system/software.nix
2025-03-02 07:17:30 +00:00

24 lines
529 B
Nix

{ pkgs, unstable-pkgs, ... }: {
environment.systemPackages = with pkgs; [
vim
tmux
] ++ [
unstable-pkgs.deno
unstable-pkgs.sqlite-interactive
unstable-pkgs.httpie
];
programs.vim.enable = true;
programs.vim.defaultEditor = true;
environment.variables = {
EDITOR = "vim";
VISUAL = "vim";
SYSTEMD_EDITOR = "vim";
};
services.tailscale.enable = true;
services.tailscale.useRoutingFeatures = "both";
programs.git.enable = true;
programs.nix-ld.enable = true; # for Deno :)
}