42 lines
690 B
Nix
42 lines
690 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
|
||
|
];
|
||
|
};
|
||
|
|
||
|
#packageOverrides = pkgs: rec {
|
||
|
#latte-dock = pkgs.latte-dock.override (attrs: {
|
||
|
# src = fetc
|
||
|
#};
|
||
|
#}
|
||
|
}
|