mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-23 09:18:35 +02:00
13 lines
312 B
Nix
13 lines
312 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";
|
|
}
|