summaryrefslogtreecommitdiff
path: root/nixos/icewm.nix
blob: 5b003593edb24844021606a259524ccc267938db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, pkgs, modulesPath, ... }:
{
  services.xserver.windowManager.icewm.enable = true;
  services.xserver.displayManager.sx.enable = true;

  environment.systemPackages = with pkgs; [
    i3lock
    feh
    acpi
    netsurf.browser
    midori
    sylpheed
    xfe
  ];
}