summaryrefslogtreecommitdiff
path: root/options.nix
blob: e598ceddc45ecc2519f67b751cc1cc8549b8f06c (plain)
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
{
  user = "freya";
  fullName = "Freya Murphy";
  email = "freya@freyacat.org";

  theme = {
    colors = (import ./themes).catppuccin.mocha;

    font = {
      size = 14;
      monospace = "monospace";
      regular = "SF Pro Text";
      header = "SF Pro Display Bold";
      icon = "Font Awesome 6 Pro";
    };

    borderWidth = 2;
    opacity = 0.75;
    outerRadius = 8;
    innerRadius = 4;
    outerGap = 10;
    innerGap = 3;
    blur = false;

    wallpaper = "~/.config/nix/files/wallpapers/moran.jxl";
    lockscreen = "~/.config/nix/files/wallpapers/flower.jxl";
    avatar = "~/.config/nix/files/pfps/mioShun.jxl";
  };

  autoRun = [
    "wl-clip-persist -c both"
    "thunderbird"
    "discord"
    "element-desktop"
  ];

  stateVersion = "25.11";
}