flake/modules/home-manager/default.nix
2025-10-19 16:13:59 +03:00

16 lines
296 B
Nix

{ lib, ... }:
{
# Import all home-manager modules
imports = [
./programs
./services
];
# Basic home-manager configuration
home.sessionVariables = {
EDITOR = lib.mkDefault "nvim";
};
# Enable basic programs that most users want
programs.home-manager.enable = true;
}