mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-07-09 14:15:12 +02:00
fe4923f8cb
Explicitly set programs.nixvim.nixpkgs.source to suppress the follows
warning, and migrate all programs.ssh.matchBlocks to programs.ssh.settings
using upstream PascalCase directive names.
10 lines
181 B
Nix
10 lines
181 B
Nix
{ config, ... }:
|
|
let
|
|
hostName = "fern";
|
|
in
|
|
{
|
|
imports = [ ../../darwin ];
|
|
|
|
programs.ssh.settings."github.com".IdentityFile = "${config.home.homeDirectory}/.ssh/${hostName}";
|
|
}
|