Created
January 20, 2020 19:35
-
-
Save zeta-00/64b006fad838508fffc0fcaad396dd6e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
home.nix installation: | |
xsession = { | |
enable = true; | |
windowManager.xmonad = { | |
enable = true; | |
enableContribAndExtras = true; | |
haskellPackages = pkgs.haskell.packages.ghc865; | |
extraPackages = haskellPackages: with haskellPackages; [ | |
xmonad | |
monad-logger | |
xmonad-contrib | |
xmonad-entryhelper | |
# xmonad-eval | |
xmonad-extras | |
xmonad-screenshot | |
xmonad-utils | |
xmonad-volume | |
xmonad-wallpaper | |
# xmonad-windownames | |
]; | |
config = ./xmonad.hs; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
xmonad.hs configuration file:
import XMonad
import qualified XMonad.StackSet as W
import XMonad.Util.EZConfig
import Graphics.X11.ExtraTypes.XF86
--import qualified XMonad.Util.Brightness as Bright
main = xmonad $ defaultConfig