mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-27 03:08:38 +02:00
18 lines
622 B
Nix
18 lines
622 B
Nix
{config, ...}: let
|
|
hostName = "shoukei"; # Define your hostname.
|
|
in {
|
|
modules.desktop.hyprland = {
|
|
nvidia = false;
|
|
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 = "eDP-1,highres,auto,1.5,bitdepth,10";
|
|
};
|
|
};
|
|
|
|
programs.ssh.matchBlocks."github.com".identityFile = "${config.home.homeDirectory}/.ssh/${hostName}";
|
|
}
|