Home

dotnix @3a79d0f6617e1187e0a0c029ceddad1a46f57b27 - 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
25
26
27
{ pkgs, ... }:
{
  imports = [ ./gtk.nix ];
  dconf.settings =
    let
      wallpaper = pkgs.fetchurl {
        url = "https://user.fm/files/v2-3834da30df507c4ba97a551571e98e33/nixppuccin.png";
        hash = "sha256-dwM+Wi2gse7Eu4f/suU2BsVACPHMfSaXYOpZPqx6/SQ=";
      };
    in
    {
      "org/cinnamon/desktop/background" = {
        picture-uri = "file://${wallpaper}";
      };
      "org/cinnamon/desktop/interface" = {
        font-name = "Monaspace Neon 10";
      };
      "org/cinnamon/desktop/wm/preferences" = {
        titlebar-font = "Monaspace Neon Bold 10";
      };
      "org/gnome/desktop/interface" = {
        document-font-name = "Monaspace Xenon 10";
        monospace-font-name = "Monaspace Argon 10";
      };
    };

}