flake/configs/client.nix

18 lines
263 B
Nix
Raw Normal View History

2024-05-12 13:33:15 +02:00
{pkgs, ...}: {
2024-06-26 19:30:41 +02:00
imports = [./common.nix];
2024-05-12 13:33:15 +02:00
environment.systemPackages = with pkgs; [
nil
ffmpeg
yt-dlp
hyfetch
];
hm.programs.keychain = {
enable = true;
agents = ["ssh"];
inheritType = "any";
keys = ["id_ed25519"];
};
}