about summary refs log tree commit diff
path: root/hosts/home-darwin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/home-darwin.nix')
-rw-r--r--hosts/home-darwin.nix55
1 files changed, 31 insertions, 24 deletions
diff --git a/hosts/home-darwin.nix b/hosts/home-darwin.nix
index ce924d5..913261f 100644
--- a/hosts/home-darwin.nix
+++ b/hosts/home-darwin.nix
@@ -1,5 +1,11 @@
-{ pkgs, stateVersion, lib, dotfiles, user, ... }:
 {
+  pkgs,
+  stateVersion,
+  lib,
+  dotfiles,
+  user,
+  ...
+}: {
   imports = [
   ];
 
@@ -12,41 +18,42 @@
     ];
   };
 
-  services = { };
+  services = {};
 
   programs = {
     emacs = {
       enable = true;
-      extraPackages = epkgs: with epkgs; [
-        use-package
+      extraPackages = epkgs:
+        with epkgs; [
+          use-package
 
-        direnv
+          direnv
 
-        evil
-        evil-collection
+          evil
+          evil-collection
 
-        doom-modeline
-        dashboard
+          doom-modeline
+          dashboard
 
-        projectile
-        lsp-ui
+          projectile
+          lsp-ui
 
-        lsp-bridge
-        rust-mode
-        rustic
-        company
-        flycheck
-        lsp-haskell
+          lsp-bridge
+          rust-mode
+          rustic
+          company
+          flycheck
+          lsp-haskell
 
-        nix-mode
-        haskell-mode
-        typescript-mode
-        jq-mode
+          nix-mode
+          haskell-mode
+          typescript-mode
+          jq-mode
 
-        doom-themes
+          doom-themes
 
-        dired-sidebar
-      ];
+          dired-sidebar
+        ];
       extraConfig = builtins.readFile "${dotfiles}/.emacs";
     };
   };