flake/configs/client.nix
2024-06-26 19:30:41 +02:00

17 lines
263 B
Nix

{pkgs, ...}: {
imports = [./common.nix];
environment.systemPackages = with pkgs; [
nil
ffmpeg
yt-dlp
hyfetch
];
hm.programs.keychain = {
enable = true;
agents = ["ssh"];
inheritType = "any";
keys = ["id_ed25519"];
};
}