Home

dotnix @147b2f4c12d507c30ea1a0ec0be4d91aaff99075 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / gui / 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ pkgs, ... }:
{
  imports = [
    ../nogui
    ./firefox.nix
    ./flameshot.nix
    ./ghostty.nix
    ./gtk.nix
    ./spotify.nix
    #./tiny.nix
    ./wezterm.nix
    ./zed.nix
  ];
  home = {
    packages = with pkgs; [
      # Tools
      cinny-desktop
      delve
      discord
      obsidian
      spotify-player

      # LSPs
      marksman
      nodePackages.yaml-language-server
    ];
  };
  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";
      };
    };
}