system changes

This commit is contained in:
Jacob Janzen 2025-01-02 23:11:01 -06:00
parent d13c1fc764
commit 642f6c76ab
2 changed files with 14 additions and 1 deletions

View file

@ -1,7 +1,7 @@
#+title: Git Configuration
Specify my name and email for =git=. Also enable =delta= and =pull.rebase=.
#+begin_src nix :tangle ~/.flake/home/programs/git.nix :mkdirp yes
#+begin_src nix
{ config, pkgs, ... }:
{

View file

@ -0,0 +1,13 @@
#+title: GhosTTY Configuration
This terminal emulator seems over-hyped, but I'm trying it anyways.
#+begin_src nix
{ config, pkgs, ... }:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;
};
}
#+end_src