Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Nov 11, 2024
1 parent 3f2682e commit b5c06dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 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 @@ -62,7 +62,7 @@
wakatime

# misc
spotify
] ++ (if osConfig.services.pipewire.enable then [ spotify ] 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 b5c06dd

Please sign in to comment.