flake/modules/home-manager/default.nix
2025-10-20 10:43:18 +03:00

18 lines
334 B
Nix

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