blob: adfcdf119d2e7b3f1b83f08a054fe76a7068c03e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ config, lib, pkgs, modulesPath, ... }:
let chicago95 = import ./pkg_chicago95.nix { pkgs };
in
{
services.xserver.windowManager.icewm.enable = true;
services.xserver.windowManager.windowmaker.enable = true;
services.xserver.desktopManager.xfce.enable = true;
environment.systemPackages = with pkgs; [
# theming
onestepback
feh
lxappearance
chicago95
libsForQt5.qtstyleplugins
libsForQt5.qt5ct
];
}
|