From 03b6b26489e98ca6b1cbf2d6d38c4ac394c7062c Mon Sep 17 00:00:00 2001 From: John Ogle Date: Tue, 20 Aug 2024 10:14:13 -0700 Subject: [PATCH] Add nix-book specific config --- home-nix-book.nix | 8 ++++++++ modules/window_managers/hyprland/nix-book.nix | 5 +++++ 2 files changed, 13 insertions(+) create mode 100644 home-nix-book.nix create mode 100644 modules/window_managers/hyprland/nix-book.nix 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"; +}