Compare commits
3 Commits
287f3f9593
...
2b206b1f91
Author | SHA1 | Date | |
---|---|---|---|
2b206b1f91 | |||
0b7b01fe88 | |||
148b537c44 |
@ -32,6 +32,8 @@
|
|||||||
checkstyle
|
checkstyle
|
||||||
# XCode
|
# XCode
|
||||||
cocoapods
|
cocoapods
|
||||||
|
# Android Development
|
||||||
|
android-tools
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -53,22 +55,6 @@
|
|||||||
nix-daemon.enable = true;
|
nix-daemon.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
homebrew = {
|
|
||||||
enable = true;
|
|
||||||
onActivation = {
|
|
||||||
# Auto update packages
|
|
||||||
autoUpdate = true;
|
|
||||||
# Uninstall not listed packages and casks
|
|
||||||
cleanup = "zap";
|
|
||||||
# Upgrade outdated formulae on activation
|
|
||||||
upgrade = true;
|
|
||||||
};
|
|
||||||
casks = [
|
|
||||||
"hiddenbar"
|
|
||||||
"android-platform-tools"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
# Workaround for pyopenssl being marked broken
|
# Workaround for pyopenssl being marked broken
|
||||||
config.allowBroken = true;
|
config.allowBroken = true;
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
../../modules/zsh.nix
|
../../modules/zsh.nix
|
||||||
../../modules/dev.nix
|
../../modules/dev.nix
|
||||||
|
../../modules/emacs.nix
|
||||||
../../modules/git.nix
|
../../modules/git.nix
|
||||||
../../modules/fonts.nix
|
../../modules/fonts.nix
|
||||||
../../modules/latex.nix
|
../../modules/latex.nix
|
||||||
|
7
user/modules/emacs.nix
Normal file
7
user/modules/emacs.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
programs.emacs = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.unstable.emacs;
|
||||||
|
extraPackages = epkgs: [epkgs.vterm];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user