Compare commits

...

2 commits

Author SHA1 Message Date
5a56185f22
feat(adrastea)!: configure new monitor setup 2024-09-21 20:36:06 -07:00
0b37ddf324
feat(adrastea)!: disable keyd 2024-09-21 20:35:45 -07:00
2 changed files with 27 additions and 24 deletions

View file

@ -33,21 +33,21 @@
# pkiBundle = "/etc/secureboot";
# };
services.keyd = {
enable = true;
keyboards = {
default = {
ids = [ "*" ];
settings = {
main = {
capslock = "esc";
leftalt = "leftcontrol";
leftcontrol = "leftalt";
};
};
};
};
};
# services.keyd = {
# enable = true;
# keyboards = {
# default = {
# ids = [ "*" ];
# settings = {
# main = {
# capslock = "esc";
# leftalt = "leftcontrol";
# leftcontrol = "leftalt";
# };
# };
# };
# };
# };
boot.initrd.luks.devices."luks-52d1be6d-b32f-41e0-a6d7-2ff52599fe7c".device = "/dev/disk/by-uuid/52d1be6d-b32f-41e0-a6d7-2ff52599fe7c";
@ -107,14 +107,15 @@
powerManagement.finegrained = false;
open = false;
nvidiaSettings = true;
prime = {
amdgpuBusId = "PCI:4:0:0";
nvidiaBusId = "PCI:1:0:0";
offload = {
enable = true;
enableOffloadCmd = true;
};
};
# prime = {
# amdgpuBusId = "PCI:4:0:0";
# nvidiaBusId = "PCI:1:0:0";
# # offload = {
# # enable = true;
# # enableOffloadCmd = true;
# # };
# sync.enable = true;
# };
};
hardware.graphics.enable = true;

View file

@ -1,6 +1,8 @@
{ pkgs, ... }:
{
wayland.windowManager.hyprland.settings.monitor = pkgs.lib.mkForce [
"eDP-1,2560x1440@165,0x0,1.6"
# "eDP-1,2560x1440@165,0x0,1.6"
"eDP-1, disable"
"DP-3,2560x1440@165,0x0,1.0"
];
}