feat(homes/rafiq): add home-manager to flake

This commit is contained in:
Mohammad Rafiq 2025-05-18 15:57:42 +08:00
parent 7b591ba470
commit 3c9ea603c4
4 changed files with 43 additions and 4 deletions

View file

@ -0,0 +1,20 @@
{ config, pkgs, osConfig, ... }:
{
home.stateVersion = "24.11";
home.packages = with pkgs; [
git
neovim
ripgrep
];
home.file = {
};
home.sessionVariables = {
EDITOR = "nvim";
};
programs.home-manager.enable = true;
}