36 lines
568 B
Nix
36 lines
568 B
Nix
|
{ pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
environment = {
|
||
|
systemPackages = with pkgs; [
|
||
|
# Internet
|
||
|
firefox
|
||
|
keepassxc
|
||
|
riot-desktop
|
||
|
syncthing
|
||
|
qsyncthingtray
|
||
|
|
||
|
# Wire(less) internet support
|
||
|
dnsmasq
|
||
|
hostapd
|
||
|
iw
|
||
|
plasma-nm
|
||
|
|
||
|
# KDE plasma and applications
|
||
|
kate
|
||
|
latte-dock # My PC has enough RAM by now
|
||
|
kleopatra
|
||
|
networkmanager
|
||
|
okular
|
||
|
plasma-desktop
|
||
|
plasma-integration
|
||
|
sddm
|
||
|
# To show of your distro
|
||
|
neofetch
|
||
|
|
||
|
# Communication
|
||
|
tdesktop
|
||
|
];
|
||
|
};
|
||
|
}
|