hydrogen: init (#20)

Reviewed-on: https://codeberg.org/leana8959/.files/pulls/20
Co-authored-by: Léana 江 <leana.jiang+git@icloud.com>
Co-committed-by: Léana 江 <leana.jiang+git@icloud.com>
This commit is contained in:
Primrose 2025-11-02 05:12:02 +01:00 committed by Léana
parent a1024668db
commit 006798d917
31 changed files with 481 additions and 141 deletions

View file

@ -0,0 +1,19 @@
{pkgs, ...}: {
environment.systemPackages = [
pkgs.man-pages
pkgs.man-pages-posix
];
#
# Programs
#
programs = {
vim.enable = true;
vim.defaultEditor = true;
git.enable = true;
};
# Helps with kitty when ssh from remote
environment.enableAllTerminfo = true;
}