Skip to content

Commit

Permalink
Disable sound on toaster
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Nov 11, 2024
1 parent 3f2682e commit a940319
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
8 changes: 5 additions & 3 deletions home/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, username, ... }:
{ pkgs, username, osConfig, ... }:
{
nixpkgs.config.allowUnfree = true;

Expand Down Expand Up @@ -46,8 +46,6 @@
# settings
arandr
brightnessctl
pamixer
pavucontrol

# messaging
discord
Expand All @@ -62,7 +60,11 @@
wakatime

# misc
] ++ (if osConfig.services.pipewire.enable then [
spotify
pamixer
pavucontrol
] else [ ]) ++ [
gimp
neofetch
pass
Expand Down
7 changes: 7 additions & 0 deletions system/_toaster.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
steam.enable = lib.mkForce false;
};

services.pipewire = {
enable = lib.mkForce false;
alsa.enable = lib.mkForce false;
alsa.support32Bit = lib.mkForce false;
pulse.enable = lib.mkForce false;
};

services.upower.enable = true;

virtualisation = {
Expand Down

0 comments on commit a940319

Please sign in to comment.