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.

63 lines
1.5 KiB

  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-darker"
  12. gtk-icon-theme-name="Arc"
  13. gtk-font-name="Iosevka 11"
  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. home.file.".config/gtk-2.0/gtkfilechooser.ini" = {
  27. text = ''
  28. [Filechooser Settings]
  29. LocationMode=path-bar
  30. ShowHidden=false
  31. ShowSizeColumn=true
  32. GeometryX=442
  33. GeometryY=212
  34. GeometryWidth=1036
  35. GeometryHeight=609
  36. SortColumn=name
  37. SortOrder=ascending
  38. StartupMode=recent
  39. '';
  40. };
  41. home.file.".config/gtk-3.0/settings.ini" = {
  42. text = ''
  43. [Settings]
  44. gtk-theme-name=Nordic-darker
  45. gtk-icon-theme-name=Arc
  46. gtk-font-name=Iosevka 11
  47. gtk-cursor-theme-size=0
  48. gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
  49. gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
  50. gtk-button-images=0
  51. gtk-menu-images=0
  52. gtk-enable-event-sounds=1
  53. gtk-enable-input-feedback-sounds=1
  54. gtk-xft-antialias=1
  55. gtk-xft-hinting=1
  56. gtk-xft-hintstyle=hintmedium
  57. '';
  58. };
  59. }