diff --git a/pkgs/hyprland/biscuit.nix b/pkgs/hyprland/biscuit.nix index 802232b..661a990 100644 --- a/pkgs/hyprland/biscuit.nix +++ b/pkgs/hyprland/biscuit.nix @@ -158,6 +158,10 @@ "$mod, mouse_down, workspace, e+1" "$mod, mouse_up, workspace, e-1" + + "$mod, F, fullscreen, 0" + + "$mod, Space, exec, pkill wofi || wofi --show drun" ] ++ ( # workspaces diff --git a/pkgs/wofi/biscuit.nix b/pkgs/wofi/biscuit.nix index 42bb32d..0b4e3c5 100644 --- a/pkgs/wofi/biscuit.nix +++ b/pkgs/wofi/biscuit.nix @@ -8,9 +8,9 @@ wofiSource = builtins.toPath ./launcher; in { programs.wofi.enable = true; - home.file.".config/wofi" = { - source = wofiSource; - recursive = true; - force = true; - }; + # home.file.".config/wofi" = { + # source = wofiSource; + # recursive = true; + # force = true; + # }; } diff --git a/system/sound.nix b/system/sound.nix index 9aa6052..74dff58 100644 --- a/system/sound.nix +++ b/system/sound.nix @@ -1,7 +1,11 @@ -{ ... }: { +{ pkgs, ... }: { # Enable sound. # services.pulseaudio.enable = true; # OR + environment.systemPackages = with pkgs; [ + pavucontrol + ]; + security.rtkit.enable = true; services.pipewire = { enable = true; pulse.enable = true;