14 lines
308 B
Nix
14 lines
308 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
|
||
|
# Define the i3 window manager configuration
|
||
|
services.xserver = {
|
||
|
windowManager.xmonad = {
|
||
|
enable = true;
|
||
|
enableContribAndExtras = true;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|