17 lines
261 B
Nix
17 lines
261 B
Nix
|
{ pkgs }:
|
||
|
|
||
|
#with lib;
|
||
|
|
||
|
#mkIf (elem "i3" cfg.xserver.wms) {
|
||
|
# i3 =
|
||
|
{
|
||
|
enable = true;
|
||
|
configFile = ../../config/etc/i3/config;
|
||
|
extraPackages = with pkgs; [
|
||
|
dmenu
|
||
|
file
|
||
|
i3lock
|
||
|
i3status
|
||
|
];
|
||
|
}
|