mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-24 09:48:30 +02:00
18 lines
595 B
Nix
18 lines
595 B
Nix
{config, ...}: {
|
|
modules.desktop = {
|
|
hyprland = {
|
|
nvidia = true;
|
|
settings = {
|
|
# Configure your Display resolution, offset, scale and Monitors here, use `hyprctl monitors` to get the info.
|
|
# highres: get the best possible resolution
|
|
# auto: position automatically
|
|
# 1.5: scale to 1.5 times
|
|
# bitdepth,10: enable 10 bit support
|
|
monitor = "DP-2,highres,auto,1.5,bitdepth,10";
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.ssh.matchBlocks."github.com".identityFile = "${config.home.homeDirectory}/.ssh/idols-ai";
|
|
}
|