synix/tests/build/hm-hyprland/default.nix
sid 9721481a69
All checks were successful
Flake check / flake-check (pull_request) Successful in 18s
Build tests / build-hosts (pull_request) Successful in 31s
stylix: use image to generate color scheme with scheme = 'generate-from-image'
2026-04-03 17:35:24 +02:00

30 lines
492 B
Nix

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