nichts/modules/style/quickshell/module.nix

21 lines
313 B
Nix
Raw Normal View History

2024-10-09 22:49:23 +02:00
{
config,
lib,
2024-11-01 14:51:13 +01:00
inputs,
2024-10-09 22:49:23 +02:00
pkgs,
...
}: let
2025-04-16 22:34:25 +02:00
inherit (inputs) quickshell;
2024-10-09 22:49:23 +02:00
in {
2025-04-16 22:34:25 +02:00
environment.systemPackages = with pkgs; [
quickshell.packages.x86_64-linux.default
qt6.qtimageformats
qt6.qt5compat
qt6.qtmultimedia
qt6.qtdeclarative
];
# taken from outfoxxed.
qt.enable = true;
2024-10-09 22:49:23 +02:00
}