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.

28 lines
642 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. ];
  12. extraInit = ''
  13. export XAUTHORITY=/tmp/Xauthority
  14. [ -e ~/.Xauthority ] && mv -f ~/.Xauthority "$XAUTHORITY"
  15. '';
  16. };
  17. services.picom.enable = true;
  18. services.openssh.enable = true;
  19. services.printing.enable = true;
  20. fonts.fonts = with pkgs; [
  21. iosevka
  22. emacs-all-the-icons-fonts
  23. ];
  24. }