summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-11-17 21:02:00 -0600
committerTim Keller <tjkeller.xyz>2024-11-17 21:02:00 -0600
commit591c19ebff51ca5a59ea1f4eaffa9f781dab99a8 (patch)
treec79d50274f7ec10d528c51879b236d73781d529c /modules
parent9bf6d25dba70773740fdb4d778703853964c5393 (diff)
downloadnixos-591c19ebff51ca5a59ea1f4eaffa9f781dab99a8.tar.xz
nixos-591c19ebff51ca5a59ea1f4eaffa9f781dab99a8.zip
default fonts config and add screenshots to shortcuts
Diffstat (limited to 'modules')
-rw-r--r--modules/home/theme.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/home/theme.nix b/modules/home/theme.nix
index 531adb4..630780e 100644
--- a/modules/home/theme.nix
+++ b/modules/home/theme.nix
@@ -29,7 +29,7 @@
};
font = {
package = pkgs.inter;
- name = "inter";
+ name = "Inter";
};
cursorTheme = {
name = "Adwaita";
@@ -37,6 +37,7 @@
gtk3.bookmarks = [
"file:///home/timmy/dls Downloads"
"file:///home/timmy/docs Documents"
+ "file:///home/timmy/pics/screenshots Screenshots"
"file:///home/timmy/docs/src/sites sites"
"file:///home/timmy/docs/src/scripts scripts"
"file:///home/timmy/docs/src/programs programs"
@@ -47,5 +48,9 @@
enable = true;
platformTheme.name = "gtk3";
};
+ fonts.fontconfig.defaultFonts = {
+ sansSerif = [ "Inter" ];
+ monospace = [ "CommitMono" ];
+ };
};
}