This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-migration/modules/admin.nix

10 lines
147 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim tmux git htop
];
environment.variables = { EDITOR = "vim"; };
}