nixos/common/gui/pkgs.nix

76 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2020-05-14 21:37:19 +00:00
{ pkgs, config, ...}:
2020-05-12 08:53:09 +00:00
{
environment = {
systemPackages = with pkgs; [
# Internet
firefox
keepassxc
riot-desktop
qsyncthingtray
# Spelling
hunspell
2020-05-12 08:53:09 +00:00
# Wire(less) internet support
dnsmasq
hostapd
iw
plasma-nm
# KDE plasma and applications
2020-05-14 21:37:19 +00:00
#cuttlefish
discover
# Dependencies for discover
glib-networking
libsoup
# End
kdeApplications.akonadi
kdeApplications.ark
kdeApplications.filelight
kdeApplications.gwenview
kdeApplications.kate
kdeApplications.kdialog
kdeApplications.kmail
kdeApplications.kmail-account-wizard
kdeApplications.kmailtransport
kdeApplications.knotes
kdeApplications.kolourpaint
kdeApplications.kontact
2020-05-12 08:53:09 +00:00
latte-dock # My PC has enough RAM by now
2020-05-14 21:37:19 +00:00
kdeApplications.kleopatra
kdeApplications.korganizer
2020-05-27 20:21:35 +00:00
kdeFrameworks.qqc2-desktop-style # Makes QtQuick applications look like desktop ones
2020-05-12 08:53:09 +00:00
okular
2020-05-14 21:37:19 +00:00
packagekit
packagekit-qt
2020-05-12 08:53:09 +00:00
plasma-desktop
plasma-integration
2020-05-27 20:21:35 +00:00
# plasma5
plasma5.polkit-kde-agent
plasma5.powerdevil
2020-05-15 00:23:33 +00:00
plasma5.sddm-kcm
2020-05-27 20:21:35 +00:00
plasma5.user-manager
2020-05-14 21:37:19 +00:00
plasma5.xdg-desktop-portal-kde
my.plasma-applet-window-buttons
2020-05-15 00:23:33 +00:00
my.sddm-nx
2020-05-12 08:53:09 +00:00
sddm
2020-05-14 21:37:19 +00:00
kdeApplications.spectacle
2020-05-27 20:21:35 +00:00
cantata
2020-05-14 21:37:19 +00:00
2020-05-12 08:53:09 +00:00
# To show of your distro
neofetch
# Communication
tdesktop
2020-05-14 21:37:19 +00:00
# Misc
networkmanager
qemu_kvm
virt-manager
2020-05-12 08:53:09 +00:00
];
};
2020-05-14 21:37:19 +00:00
nixpkgs.config.firefox.enablePlasmaBrowserIntegration = true;
2020-05-12 08:53:09 +00:00
}