Home

dotnix @2395ed8986281734ce55dc78f9f58836c9e55364 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / de / default.nix
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ jolheiser, ... }:
{
  # imports = [ ./gtk.nix ];
  dconf.settings =
    let
      inherit (jolheiser) wallpaper;
    in
    {
      "org/cinnamon/desktop/background" = {
        picture-uri = "file://${wallpaper}";
      };
      "org/cinnamon/desktop/interface" = {
        font-name = "MonaspiceNe Nerd Font Regular 10";
      };
      "org/cinnamon/desktop/wm/preferences" = {
        titlebar-font = "MonaspiceNe Nerd Font Bold 10";
      };
      "org/gnome/desktop/interface" = {
        document-font-name = "MonaspiceXe Nerd Font Regular 10";
        monospace-font-name = "MonaspiceAr Nerd Font Regular 10";
        color-scheme = "prefer-dark";
      };
    };
}