2026-02-07 12:41:30 +01:00

22 lines
277 B
Nix

{config, pkgs, inputs, ...}:
{
imports = [
../common/home.nix
../../modules/home-manager/hyprland.nix
];
home = {
stateVersion = "25.11";
packages = with pkgs; [
];
file = {
};
sessionVariables = {
EDITOR = "nvim";
};
};
}