mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 23:44:16 +01:00
21 lines
394 B
Nix
21 lines
394 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./creative.nix
|
|
./media.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# networking
|
|
wireshark
|
|
|
|
# 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
|
|
];
|
|
} |