Adding import ./emacs.nix
This commit is contained in:
@@ -1773,6 +1773,13 @@ This sets up the emacs terminal
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# NixOS Configuration
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Add system-wide packages here, if any
|
||||
];
|
||||
|
||||
# Home Manager Configuration for the user 'henrov'
|
||||
home-manager.users.henrov = {
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs-pgtk.override { withTreeSitter = true; };
|
||||
@@ -1853,7 +1860,12 @@ This sets up the emacs terminal
|
||||
target = ".emacs.d/init.el";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# If you need additional services or system configurations, add them here
|
||||
services.nextcloud-client.enable = true;
|
||||
}
|
||||
|
||||
#+END_SRC
|
||||
|
||||
** =generated/system/applications/terminal_shell/early-init.el=
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# NixOS Configuration
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Add system-wide packages here, if any
|
||||
];
|
||||
|
||||
# Home Manager Configuration for the user 'henrov'
|
||||
home-manager.users.henrov = {
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs-pgtk.override { withTreeSitter = true; };
|
||||
@@ -81,4 +88,8 @@
|
||||
target = ".emacs.d/init.el";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# If you need additional services or system configurations, add them here
|
||||
services.nextcloud-client.enable = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user