2026-02-07 12:33:33 +01:00

22 lines
279 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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