dotfiles/home/NixVM.nix

17 lines
292 B
Nix
Raw Normal View History

2024-06-13 13:14:56 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
(import ./utils/common.nix { inherit inputs config pkgs; })
2024-06-13 13:21:06 +02:00
./ssh
2024-06-13 13:14:56 +02:00
];
2024-06-13 13:21:06 +02:00
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/NixVM/id_ed25519";
2024-06-13 14:29:55 +02:00
home.packages = with pkgs; [
wl-clipboard
jq
evince
];
2024-06-13 13:14:56 +02:00
}