config.nix/modules/window_manager/hyprland.nix
2025-12-16 12:54:59 +01:00

27 lines
396 B
Nix

{
config,
lib,
pkgs,
...
}:
let
enable_hyprland =
if config.networking.hostName == "marty-pc"
then true
else if config.networking.hostName == "marty-latitude"
then true
else false;
in
{
programs = {
hyprland = {
enable = enable_hyprland;
xwayland.enable = enable_hyprland;
};
hyprlock = {
enable = enable_hyprland;
};
};
}