diff options
author | Freya Murphy <freya@freyacat.org> | 2025-01-23 09:26:51 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-01-23 09:26:51 -0500 |
commit | 1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2 (patch) | |
tree | eecdad132615a4469c22ee6d4ccd1df087b6159d /options.nix | |
parent | use base16 in neovim and starship (diff) | |
download | dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.tar.gz dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.tar.bz2 dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.zip |
reconfigure
Diffstat (limited to 'options.nix')
-rw-r--r-- | options.nix | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/options.nix b/options.nix index 460ab63..4377679 100644 --- a/options.nix +++ b/options.nix @@ -3,17 +3,25 @@ fullName = "Freya Murphy"; email = "freya@freyacat.org"; + # custom theme theme = rec { - colors = (import ./modules/themes).catppuccin.mocha; - accentColor = colors.base0D; + 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"; }; - 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" + ]; } |