Created
January 15, 2019 08:07
-
-
Save whacked/d8f65eec9dde0be7c5109a409c2297f7 to your computer and use it in GitHub Desktop.
minimal expression for clean slate emacs
This file contains hidden or 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
with import <nixpkgs> {}; | |
stdenv.mkDerivation rec { | |
name = "dev-env"; | |
env = buildEnv { | |
name = name; | |
paths = buildInputs; | |
}; | |
buildInputs = [ | |
glibcLocales | |
gnome3.gtk | |
emacs | |
]; | |
shellHook = '' | |
export GTK_THEME=Adwaita | |
export HOME=$PWD | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment