summaryrefslogblamecommitdiff
path: root/nixos/icewm.nix
blob: b76ca8913527ebb6bc2a14d26c1b61bdd0f95245 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                                     
                                 
                              
 

                                           
                 



                        
          
         


                   
            
       
                     
           
                  
             
            
           
         

    
{ config, lib, pkgs, modulesPath, ... }:
{
  services.xserver.windowManager.icewm.enable = true;
  services.xserver.displayManager.sx.enable = true;

  services.udisks2.enable = true;
  services.gvfs.enable = true;

  environment.systemPackages = with pkgs; [
    i3lock
    brightnessctl
    pulseaudio
    pavucontrol
    networkmanagerapplet

    arandr
    dmenu
    feh
    acpi
    netsurf.browser
    sylpheed
    xfe
    libreoffice-still
    pcmanfm
    xfce.ristretto
    xarchiver
    epdfview
    leafpad
    geany
  ];
}