mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-06 16:12:33 +02:00
082de49ca4
Signed-off-by: Hadi <hadi@example.com>
22 lines
334 B
Nix
22 lines
334 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./settings.nix
|
|
./style.nix
|
|
];
|
|
|
|
programs.waybar.enable = true;
|
|
stylix.targets.waybar.enable = false;
|
|
|
|
home.packages = with pkgs; [
|
|
playerctl
|
|
pavucontrol
|
|
blueman
|
|
swayosd
|
|
];
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
"waybar"
|
|
"swayosd-server"
|
|
];
|
|
}
|