dotfiles/home/Riva.nix

17 lines
371 B
Nix
Raw Normal View History

2024-06-13 13:14:56 +02:00
{ inputs, config, pkgs, ... }:
{
2024-09-13 10:46:49 +02:00
imports = [
2025-01-08 19:58:41 +01:00
(import ./utils/common.nix { inherit inputs config pkgs; })
(import ./utils/python.nix { inherit inputs config pkgs; })
./ssh
2024-09-13 10:46:49 +02:00
];
2024-06-13 13:21:06 +02:00
2024-09-13 10:46:49 +02:00
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/Riva/id_ed25519";
2024-06-13 14:29:55 +02:00
2024-09-13 10:46:49 +02:00
home.packages = with pkgs; [
2024-11-22 23:52:24 +01:00
distrobox
2024-09-13 10:46:49 +02:00
jq
];
2024-06-13 13:14:56 +02:00
}