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.

27 lines
647 B

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