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
659 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { pkgs, ... }:
  3. {
  4. home.packages = [
  5. pkgs.nordic
  6. pkgs.arc-icon-theme
  7. pkgs.lxappearance
  8. ];
  9. home.file.".gtkrc-2.0" = {
  10. text = ''
  11. gtk-theme-name="Nordic-Polar"
  12. gtk-icon-theme-name="Arc"
  13. gtk-font-name="Sans 10"
  14. gtk-cursor-theme-size=0
  15. gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
  16. gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
  17. gtk-button-images=0
  18. gtk-menu-images=0
  19. gtk-enable-event-sounds=1
  20. gtk-enable-input-feedback-sounds=1
  21. gtk-xft-antialias=1
  22. gtk-xft-hinting=1
  23. gtk-xft-hintstyle="hintmedium"
  24. '';
  25. };
  26. }