diff --git a/home-nix-book.nix b/home-nix-book.nix new file mode 100644 index 0000000..1026ef3 --- /dev/null +++ b/home-nix-book.nix @@ -0,0 +1,8 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ./home-default.nix + ./modules/window_managers/hyprland/nix-book.nix + ]; +} diff --git a/modules/window_managers/hyprland/nix-book.nix b/modules/window_managers/hyprland/nix-book.nix new file mode 100644 index 0000000..7672b38 --- /dev/null +++ b/modules/window_managers/hyprland/nix-book.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, ... }: + +{ + wayland.windowManager.hyprland.settings.monitor = ",preferred,2880x1800@90.00Hz,1.33333"; +}