mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 12:30:23 +01:00
14 lines
314 B
Nix
14 lines
314 B
Nix
{ config, ... }:
|
|
{
|
|
modules.desktop = {
|
|
hyprland = {
|
|
nvidia = true;
|
|
settings.source = [
|
|
"${config.home.homeDirectory}/nix-config/hosts/idols-ai/hypr-hardware.conf"
|
|
];
|
|
};
|
|
};
|
|
|
|
programs.ssh.matchBlocks."github.com".identityFile = "${config.home.homeDirectory}/.ssh/idols-ai";
|
|
}
|