From 45ce1678d1d492c90bf306d289bbb11bfc7c9633 Mon Sep 17 00:00:00 2001 From: biscuit Date: Tue, 20 May 2025 21:22:46 -0500 Subject: [PATCH] updd --- pkgs/hyprland/biscuit.nix | 4 ++++ pkgs/wofi/biscuit.nix | 10 +++++----- system/sound.nix | 6 +++++- 3 files changed, 14 insertions(+), 6 deletions(-) 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;