mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
15 lines
291 B
Nix
15 lines
291 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../../users/youwen/hm.nix
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
wayland.windowManager.hyprland.settings.monitor = [
|
|
"DP-1,2560x1440@144,1920x0,auto"
|
|
"HDMI-A-1,1920x1080@60,0x0,1"
|
|
];
|
|
|
|
liminalOS.desktop.hyprland.screenlocker.monitor = "DP-1";
|
|
}
|