init: NixOS flake config with home-manager and Vietnamese input

This commit is contained in:
2026-08-05 23:58:32 +07:00
commit ca023da655
5 changed files with 248 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
home.username = "duynguyen";
home.homeDirectory = "/home/duynguyen";
home.stateVersion = "26.05";
home.packages = with pkgs; [
# Add user-level packages here
];
programs.bash.enable = true;
programs.git = {
enable = true;
userName = "duynguyen";
userEmail = "huonghaiduynhim@gmail.com";
};
programs.home-manager.enable = true;
}