From 33fb08cd681243c04516f44b30c596b756ba0e10 Mon Sep 17 00:00:00 2001 From: Emmet Date: Sat, 15 Feb 2025 16:23:31 -0600 Subject: [PATCH] Fixed polarias config --- hosts/polarias/configuration.nix | 7 +++++++ hosts/polarias/hardware-configuration.nix | 2 +- hosts/polarias/home.nix | 12 ++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/hosts/polarias/configuration.nix b/hosts/polarias/configuration.nix index cc4f0801..d9871de7 100644 --- a/hosts/polarias/configuration.nix +++ b/hosts/polarias/configuration.nix @@ -44,6 +44,13 @@ theme = "ayu-dark"; }; }; + + users.users.emmet.description = "Emmet"; + home-manager.users.emmet.userSettings = { + name = "Emmet"; + email = "emmet@librephoenix.com"; + }; + }; } diff --git a/hosts/polarias/hardware-configuration.nix b/hosts/polarias/hardware-configuration.nix index 07a12df0..db9c7cd6 100644 --- a/hosts/polarias/hardware-configuration.nix +++ b/hosts/polarias/hardware-configuration.nix @@ -46,7 +46,7 @@ wantedBy = [ "suspend.target" ]; }; - boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "rtsx_pci_sdmmc" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "rtsx_pci_sdmmc" "hid_generic" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; diff --git a/hosts/polarias/home.nix b/hosts/polarias/home.nix index 84fc4f7f..768e389e 100644 --- a/hosts/polarias/home.nix +++ b/hosts/polarias/home.nix @@ -37,5 +37,17 @@ bluetooth.enable = true; }; + wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable { + settings = { + monitor = [ + "eDP-1,1920x1080@300,900x1080,1" + "HDMI-A-1,1920x1080,1920x0,1" + "DP-1,1920x1080,0x0,1" + ]; + + }; + }; + + }; }