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
|
2020-05-18 11:40:41 +00:00
|
|
|
|
|
|
|
# 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
|
2020-05-18 11:40:41 +00:00
|
|
|
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-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-15 00:23:33 +00:00
|
|
|
plasma5.sddm-kcm
|
2020-05-14 21:37:19 +00:00
|
|
|
plasma5.xdg-desktop-portal-kde
|
2020-05-21 17:47:02 +00:00
|
|
|
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-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
|
|
|
}
|