dotfiles/home/Riva.nix

31 lines
904 B
Nix
Raw Normal View History

2024-06-13 13:14:56 +02:00
{ inputs, config, pkgs, ... }:
2025-01-28 01:20:00 +01:00
let
2025-02-14 13:14:10 +01:00
fzgo_paths = {
files = [
"/home/user/.dotfiles"
"/home/server/.cache/fzgo/entries/f/|home|server|Workspace"
];
dirs = [
"/home/user/.dotfiles"
"/home/server/.cache/fzgo/entries/d/|home|server|Workspace"
"/home/server/.cache/fzgo/entries/d/|home|server|Storage|Thomas"
"/home/server/.cache/fzgo/entries/d/|home|server|Storage|Shared"
];
};
2025-01-28 01:20:00 +01:00
in
2024-06-13 13:14:56 +02:00
{
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; })
2025-01-28 01:20:00 +01:00
(import ./utils/fzgo_links.nix { inherit config pkgs fzgo_paths; })
2025-01-08 19:58:41 +01:00
./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
}