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.

64 lines
1.6 KiB

  1. # This file is controlled by /etc/dotfiles/README.org
  2. # This module MUST be included within home manager
  3. { pkgs, ... }:
  4. {
  5. home.packages = [
  6. pkgs.nordic
  7. pkgs.arc-icon-theme
  8. pkgs.lxappearance
  9. ];
  10. home.file.".gtkrc-2.0" = {
  11. text = ''
  12. gtk-theme-name="Nordic-darker"
  13. gtk-icon-theme-name="Arc"
  14. gtk-font-name="Iosevka 11"
  15. gtk-cursor-theme-size=0
  16. gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
  17. gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
  18. gtk-button-images=0
  19. gtk-menu-images=0
  20. gtk-enable-event-sounds=1
  21. gtk-enable-input-feedback-sounds=1
  22. gtk-xft-antialias=1
  23. gtk-xft-hinting=1
  24. gtk-xft-hintstyle="hintmedium"
  25. '';
  26. };
  27. home.file.".config/gtk-2.0/gtkfilechooser.ini" = {
  28. text = ''
  29. [Filechooser Settings]
  30. LocationMode=path-bar
  31. ShowHidden=false
  32. ShowSizeColumn=true
  33. GeometryX=442
  34. GeometryY=212
  35. GeometryWidth=1036
  36. GeometryHeight=609
  37. SortColumn=name
  38. SortOrder=ascending
  39. StartupMode=recent
  40. '';
  41. };
  42. home.file.".config/gtk-3.0/settings.ini" = {
  43. text = ''
  44. [Settings]
  45. gtk-theme-name=Nordic-darker
  46. gtk-icon-theme-name=Arc
  47. gtk-font-name=Iosevka 11
  48. gtk-cursor-theme-size=0
  49. gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
  50. gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
  51. gtk-button-images=0
  52. gtk-menu-images=0
  53. gtk-enable-event-sounds=1
  54. gtk-enable-input-feedback-sounds=1
  55. gtk-xft-antialias=1
  56. gtk-xft-hinting=1
  57. gtk-xft-hintstyle=hintmedium
  58. '';
  59. };
  60. }