nixfiles/profiles/nixos/gui/base/default.nix

43 lines
1 KiB
Nix
Raw Normal View History

2024-07-24 14:13:59 +01:00
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
2024-07-22 20:06:07 +01:00
adwaita-icon-theme
];
2023-10-14 12:35:20 +01:00
programs.dconf.enable = true;
2024-03-30 10:29:21 +00:00
services.xserver.xkb = {
layout = "gb";
};
2023-06-03 18:50:49 +01:00
fonts = {
2023-07-28 22:19:06 +01:00
packages = with pkgs; [comic-sans comic-code];
2023-06-03 18:50:49 +01:00
fontconfig = {
# For Telegram
localConf = ''
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<match>
<test name="family"><string>Open Sans</string></test>
<edit name="family" mode="assign" binding="strong">
<string>Comic Sans MS</string>
</edit>
</match>
<match>
<test name="family"><string>Open Sans Semibold</string></test>
<edit name="family" mode="assign" binding="strong">
<string>Comic Sans MS:style=bold</string>
</edit>
</match>
</fontconfig>
2023-06-03 18:50:49 +01:00
'';
defaultFonts = {
serif = ["Comic Sans MS"];
sansSerif = ["Comic Sans MS"];
monospace = ["Comic Code"];
};
};
};
}