I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
826 B

3 years ago
  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, ... }:
  3. {
  4. services.xserver.enable = true;
  5. services.xserver.layout = "us";
  6. services.xserver.libinput.enable = true;
  7. services.xserver.displayManager.startx.enable = true;
  8. environment = {
  9. systemPackages = with pkgs; [
  10. pkgs.sqlite
  11. pkgs.pfetch
  12. pkgs.cmatrix
  13. pkgs.asciiquarium
  14. ];
  15. extraInit = ''
  16. export XAUTHORITY=/tmp/Xauthority
  17. export xserverauthfile=/tmp/xserverauth
  18. [ -e ~/.Xauthority ] && mv -f ~/.Xauthority "$XAUTHORITY"
  19. [ -e ~/.serverauth.* ] && mv -f ~/.serverauth.* "$xserverauthfile"
  20. '';
  21. };
  22. services.picom.enable = true;
  23. services.openssh.enable = true;
  24. services.printing.enable = true;
  25. fonts.fonts = with pkgs; [
  26. iosevka-bin
  27. emacs-all-the-icons-fonts
  28. ];
  29. }