mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
22 lines
277 B
Nix
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";
|
|
};
|
|
};
|
|
}
|