This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/hosts/hermes/home.nix
2023-08-20 14:35:39 +05:30

65 lines
1 KiB
Nix

{ pkgs, ... }:
{
imports = [
../../modules/common-home.nix
./mail.nix
./emacs.nix
];
home.packages = with pkgs; [
# learn...things?
# anki
# security
keepassxc # password management
rage # secrets management
# apps
vlc
strawberry
picard # tag music tracks
firefox
# soulseekqt
# appimage-run # for soulseek-qt
# communication
# element-desktop
# nheko
# utilities
youtube-dl
qbittorrent
digikam
okular
kcalc
ark # munging archives
unrar # So ark can open .rar files
spectacle
gwenview
kate
libreoffice # thoroughly average grown up stuff
hugo
qpdf
documenso
];
programs = {
go.enable = true;
ssh = {
enable = true;
matchBlocks = {
"ssh.bhankas.org" = {
user = "gitea";
hostname = "ssh.bhankas.org";
identityFile = [ "~/.ssh/id_ed25519" ];
proxyCommand = "${pkgs.cloudflared}/bin/cloudflared access ssh --hostname %h";
};
};
};
};
}