nix-configurations/home/features/desktop/waybar.nix

36 lines
739 B
Nix
Raw Normal View History

2023-04-09 09:12:23 +00:00
{ inputs, config, lib, pkgs, ... }: {
# programs = {
# fish.loginShellInit = ''
# if test (tty) = "/dev/tty1"
# exec Hyprland &> /dev/null
# end
# '';
# };
# wayland.windowManager.hyprland = {
# enable = true;
# nvidiaPatches = true;
# extraConfig = (import ./config.nix { inherit (config) home; });
# };
programs.waybar.package = pkgs.waybar.overrideAttrs
(oa: { mesonFlags = (oa.mesonFlags or [ ]) ++ [ "-Dexperimental=true" ]; });
programs.waybar.enable = true;
home.packages = with pkgs; [
grim
imv
mimeo
xwayland
pulseaudio
slurp
swayidle
swaylock
waypipe
wireplumber
wf-recorder
wl-clipboard
wl-mirror
ydotool
];
}