29 lines
491 B
Nix
29 lines
491 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
i3status
|
||
|
rofi
|
||
|
arandr
|
||
|
pavucontrol
|
||
|
viewnior
|
||
|
xfce.mousepad
|
||
|
pcmanfm
|
||
|
evince
|
||
|
brightnessctl
|
||
|
networkmanagerapplet
|
||
|
];
|
||
|
|
||
|
programs.i3lock.enable = true;
|
||
|
|
||
|
services = {
|
||
|
displayManager = {
|
||
|
defaultSession = "none+i3";
|
||
|
};
|
||
|
xserver.windowManager.i3 = {
|
||
|
enable = true;
|
||
|
extraPackages = [ ];
|
||
|
configFile = "${(import ./embedded/i3.nix { inherit pkgs; })}";
|
||
|
};
|
||
|
};
|
||
|
}
|