mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-13 05:45:34 +01:00
feat: remove nur & devenv feat: adjust the structure to make it suitable for servers feat: add iso/proxmox generators and add docs about it feat: update ryan's openssh keys & add hashedPassword feat: add proxmox's nodes into ssh_config, with alias
37 lines
614 B
Nix
37 lines
614 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./alacritty
|
|
|
|
./creative.nix
|
|
./media.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# GUI apps
|
|
insomnia # REST client
|
|
wireshark # network analyzer
|
|
|
|
# e-book viewer(.epub/.mobi/...)
|
|
# do not support .pdf
|
|
foliate
|
|
|
|
# instant messaging
|
|
telegram-desktop
|
|
discord
|
|
qq # https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/networking/instant-messengers/qq
|
|
|
|
# remote desktop(rdp connect)
|
|
remmina
|
|
freerdp # required by remmina
|
|
|
|
# misc
|
|
flameshot
|
|
];
|
|
|
|
# GitHub CLI tool
|
|
programs.gh = {
|
|
enable = true;
|
|
};
|
|
}
|