mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
25 lines
299 B
Nix
25 lines
299 B
Nix
{config, pkgs, inputs, ...}:
|
|
|
|
let
|
|
modules = import ../../modules;
|
|
in
|
|
{
|
|
imports = [
|
|
../common/home.nix
|
|
modules.hm.hyprland
|
|
];
|
|
|
|
home = {
|
|
stateVersion = "25.11";
|
|
packages = with pkgs; [
|
|
];
|
|
file = {
|
|
|
|
};
|
|
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
};
|
|
}
|