62 lines
1.2 KiB
Nix
Executable File
62 lines
1.2 KiB
Nix
Executable File
{ pkgs, lib, spicetify-nix, ... }:
|
|
|
|
{
|
|
|
|
programs.mtr.enable = true;
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
users.users.k3t = {
|
|
packages = with pkgs; [
|
|
moonlight-qt
|
|
input-leap
|
|
fcast-client
|
|
fcast-receiver
|
|
joplin-desktop
|
|
qbittorrent
|
|
kdePackages.kate
|
|
jellyfin-desktop
|
|
flatpak
|
|
grayjay
|
|
vscode.fhs
|
|
signal-desktop
|
|
easyeffects
|
|
pulseaudio
|
|
kdePackages.kwallet
|
|
virt-viewer
|
|
(qutebrowser.override {
|
|
enableWideVine = true;
|
|
})
|
|
(pkgs.kodi-wayland.withPackages (kodiPkgs: with kodiPkgs; [
|
|
inputstream-adaptive
|
|
inputstream-ffmpegdirect
|
|
inputstream-rtmp
|
|
inputstreamhelper
|
|
bluetooth-manager
|
|
vfs-sftp
|
|
vfs-rar
|
|
vfs-libarchive
|
|
urllib3
|
|
upnext
|
|
sponsorblock
|
|
invidious
|
|
simplecache
|
|
libretro
|
|
libretro-snes9x
|
|
libretro-nestopia
|
|
jellycon
|
|
archive_tool
|
|
joystick
|
|
keymap
|
|
jellyfin
|
|
visualization-projectm
|
|
visualization-goom
|
|
visualization-fishbmc
|
|
visualization-matrix
|
|
]))
|
|
];
|
|
};
|
|
}
|