mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
28 lines
482 B
Nix
28 lines
482 B
Nix
|
{ pkgs, ... }: {
|
||
|
# links /libexec from derivations to /run/current-system/sw
|
||
|
environment.pathsToLink = [ "/libexec" ];
|
||
|
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
|
||
|
desktopManager = {
|
||
|
xterm.enable = false;
|
||
|
};
|
||
|
|
||
|
displayManager = {
|
||
|
defaultSession = "none+i3";
|
||
|
};
|
||
|
|
||
|
windowManager.i3 = with pkgs; {
|
||
|
enable = true;
|
||
|
package = i3-gaps;
|
||
|
extraPackages = [
|
||
|
rofi
|
||
|
i3lock
|
||
|
i3blocks
|
||
|
i3status
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|