blob: d6bc665128e8e3e1c0bb4e6557251ae93ffeaaf6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ config, lib, pkgs, modulesPath, ... }:
{
services.xserver.windowManager.icewm.enable = true;
services.xserver.displayManager.sx.enable = true;
environment.systemPackages = with pkgs; [
i3lock
brightnessctl
pulseaudio
pavucontrol
networkmanagerapplet
dmenu
feh
acpi
netsurf.browser
midori
sylpheed
xfe
pcmanfm
libreoffice-still
];
}
|