Martin Berg Alstad f7e4fc7638
🖌️ Styling, flatpak == false, clock
- Disabled flatpak
- Added kitty config and disabled stylix
- Styled Mpv
- Added gnome-clocks
2025-01-12 16:17:44 +01:00

21 lines
304 B
Nix

{
catppuccin.mpv =
let
theme = import ../theme.nix;
in
{
enable = true;
flavor = theme.flavor;
};
programs.mpv = {
enable = true;
config = {
hwdec = "auto-safe";
vo = "gpu";
profile = "gpu-hq";
gpu-context = "wayland";
};
};
}