18 lines
552 B
Nix
18 lines
552 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
passff-host
|
||
|
gnome3.gnome-screenshot
|
||
|
xpdf apvlv unstable.xidlehook blueman
|
||
|
fontconfig xclip gimp glxinfo
|
||
|
unstable.notable evince signal-desktop
|
||
|
libreoffice unstable.tor-browser-bundle-bin vlc
|
||
|
jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio
|
||
|
(wine.override { wineBuild = "wineWow"; }) winetricks
|
||
|
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
|
||
|
slack discord obs-studio
|
||
|
];
|
||
|
|
||
|
}
|