synix/tests/build/hm-hyprland/default.nix
sid ecf5132cbb
Some checks failed
Build tests / build-hosts (pull_request) Failing after 3s
Flake check / flake-check (pull_request) Failing after 13s
enforce new flake schema. formatting.
2026-05-31 18:50:41 +02:00

32 lines
475 B
Nix

{
inputs,
outputs,
pkgs,
...
}:
{
imports = [
outputs.homeModules.common
outputs.homeModules.hyprland
outputs.homeModules.nixvim
outputs.homeModules.stylix
];
home.username = "test-user";
programs.nixvim.enable = true;
wayland.windowManager.hyprland = {
enable = true;
autostart = true;
};
stylix = {
enable = true;
scheme = "generate-from-image";
image = ./wallpaper.png;
};
home.stateVersion = "25.11";
}