Files
nix-config/modules/hosts/tux/users/hyprland.nix
T
Weckyy702 9c101ab211 Tux/Weckyy702: Clean up user specific modules
Generic modules should live in generic locations :^)
2026-06-23 14:24:22 +02:00

16 lines
358 B
Nix

{ inputs, ... }: {
flake.modules.homeManager.tux-hyprland = {
imports = with inputs.self.modules.homeManager; [
ashell
];
wayland.windowManager.hyprland.extraConfig = ''
hl.monitor({
output = "eDP-1",
mode = "preferred",
position = "0x0",
scale = 1.066666667,
})
'';
};
}