init: base flake + minimal home config

This commit is contained in:
2026-03-03 21:03:50 +01:00
commit 3c8910ccc7
3 changed files with 92 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
home.username = "ayman";
home.homeDirectory = "/home/ayman";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
home.packages = with pkgs; [
ripgrep
fd
bat
];
}