mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-08 18:03:08 +02:00
rm doom-emacs
Signed-off-by: Alex Stan <stan.alexandru@ichb.ro>
This commit is contained in:
parent
a43c06a8d0
commit
8298af5184
2 changed files with 5 additions and 2 deletions
|
@ -176,7 +176,7 @@ in {
|
|||
|
||||
services = {
|
||||
emacs = {
|
||||
enable = true;
|
||||
enable = false; # takes a lot of time to compile
|
||||
package = doom-emacs.override {
|
||||
doomPrivateDir = ./doom.d;
|
||||
};
|
||||
|
|
|
@ -9,6 +9,9 @@ in {
|
|||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"electron-21.4.0"
|
||||
];
|
||||
home = {
|
||||
username = "ultra";
|
||||
homeDirectory = "/home/ultra/";
|
||||
|
@ -73,7 +76,7 @@ in {
|
|||
programs = {
|
||||
home-manager.enable = true;
|
||||
doom-emacs = {
|
||||
enable = true;
|
||||
enable = false; # takes a lot of time to compile
|
||||
doomPrivateDir = ./doom.d;
|
||||
};
|
||||
# fish.enable = true;
|
||||
|
|
Loading…
Reference in a new issue