feat: multiple user

This commit is contained in:
2026-02-28 19:42:36 +09:00
parent 2acc8a1e67
commit 35623910b0
8 changed files with 86 additions and 66 deletions
+25
View File
@@ -0,0 +1,25 @@
{ pkgs, ... }:
{
home.stateVersion = "25.05";
imports = [
../../../home-manager/direnv.nix
../../../home-manager/wezterm
../../../home-manager/fish
];
home.packages = with pkgs; [ ];
programs.git = {
enable = true;
settings.user.name = "Hare";
settings.user.email = "kei.hiracchi.0928@gmail.com";
};
fonts = {
fontconfig = {
defaultFonts = {
serif = [ "Noto Serif" ];
sansSerif = [ "Noto Sans" ];
monospace = [ "PlemolJP NF Console" ];
};
};
};
}