dotfiles-nix/options.nix

28 lines
625 B
Nix
Raw Normal View History

2025-01-21 02:43:35 +00:00
{
user = "freya";
fullName = "Freya Murphy";
email = "freya@freyacat.org";
2025-01-23 14:26:51 +00:00
# custom theme
2025-01-21 02:43:35 +00:00
theme = rec {
2025-01-23 14:26:51 +00:00
colors = (import ./nix/themes).catppuccin.mocha;
2025-01-21 02:43:35 +00:00
opacity = 0.75;
outerRadius = 5;
innerRadius = 2;
outerGap = 10;
innerGap = 3;
2025-01-23 14:26:51 +00:00
wallpaper = "~/.config/nix/files/wallpapers/gay.png";
avatar = "~/.config/nix/files/pfps/freya.png";
2025-01-21 02:43:35 +00:00
};
2025-01-23 14:26:51 +00:00
# programs to auto run in gui
autoRun = [
"waybar"
"thunderbird"
"discord --enable-features=UseOzonePlatform --ozone-platform=wayland"
"element-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland"
];
2025-01-21 02:43:35 +00:00
}