blob: 43776796c233531f6e34055b0b78b5347f8779ef (
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
|
{
user = "freya";
fullName = "Freya Murphy";
email = "freya@freyacat.org";
# custom theme
theme = rec {
colors = (import ./nix/themes).catppuccin.mocha;
opacity = 0.75;
outerRadius = 5;
innerRadius = 2;
outerGap = 10;
innerGap = 3;
wallpaper = "~/.config/nix/files/wallpapers/gay.png";
avatar = "~/.config/nix/files/pfps/freya.png";
};
# programs to auto run in gui
autoRun = [
"waybar"
"thunderbird"
"discord --enable-features=UseOzonePlatform --ozone-platform=wayland"
"element-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland"
];
}
|