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.

32 lines
744 B

  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=$XAUTHORITY
  18. [ -e ~/.Xauthority ] && mv -f ~/.Xauthority "$XAUTHORITY"
  19. '';
  20. };
  21. services.picom.enable = true;
  22. services.openssh.enable = true;
  23. services.printing.enable = true;
  24. fonts.fonts = with pkgs; [
  25. iosevka
  26. emacs-all-the-icons-fonts
  27. ];
  28. }