24 lines
442 B
Nix
24 lines
442 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../modules/home/terminal.nix
|
|
../modules/home/apps.nix
|
|
../modules/home/apps-optional.nix
|
|
../modules/home/hyprland.nix
|
|
../modules/home/waybar.nix
|
|
../modules/home/theme.nix
|
|
../modules/home/gaming.nix
|
|
inputs.walker.homeManagerModules.default
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
};
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|