flake init

This commit is contained in:
2024-06-22 07:01:00 +08:00
commit f5dbb17136
7 changed files with 587 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{ config, pkgs, ... }:
{
home.username = "origami";
home.homeDirectory = "/home/origami";
programs.home-manager.enable = true;
programs.git = {
enable = true;
userName = "origami";
userEmail = "Origami404@foxmail.com";
};
home.packages = with pkgs;[];
programs.bash = {
enable = true;
enableCompletion = true;
bashrcExtra = ''
export PATH="$PATH:$HOME/bin:$HOME/.local/bin:$HOME/go/bin"
'';
};
home.stateVersion = "23.11";
}