seeing if it's easier to fork tA's nixos laptop config rather than make one from scratch (more or less).
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
243B

  1. { pkgs, ... }: {
  2. home.file.".emacs".text = ''
  3. (require 'package)
  4. (setq package-archives nil)
  5. (setq package-enable-at-startup nil)
  6. (package-initialize)
  7. '';
  8. home.file.".emacs.d/init.el".text = ''
  9. (server-start)
  10. '';
  11. }