Use home-manager, ghostty home settings

This commit is contained in:
Fern Garden 2025-07-19 17:57:59 +08:00
parent be1132ccb6
commit 667c8259c0
6 changed files with 66 additions and 0 deletions

15
home.nix Normal file
View file

@ -0,0 +1,15 @@
{
config,
pkgs,
...
}: {
# Me!
home.username = "fern";
home.homeDirectory = "/home/fern";
# Home manager version.
home.stateVersion = "25.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}