Files
nix-config/hosts/12kingdoms-shoukei/home.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}";
}