mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
Fix audio
This commit is contained in:
parent
be802886d6
commit
c9b21051a3
4 changed files with 6 additions and 5 deletions
|
|
@ -11,6 +11,7 @@ in {
|
|||
# System
|
||||
mods.user.name = "muon";
|
||||
networking.hostName = cfg.user.name;
|
||||
networking.hostId = "a230906f";
|
||||
mods.home.file = ./home.nix;
|
||||
|
||||
# Modules
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
boot.supportedFilesystems = [ "zfs" "ntfs" "btrfs" ];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/03e49688-cc62-49c9-a906-e2ea87a38891";
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ in with lib; {
|
|||
dolphin
|
||||
|
||||
# documents
|
||||
# texliveFull
|
||||
texliveFull
|
||||
# texstudio
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,8 @@
|
|||
options.mods.sound.enable = lib.mkEnableOption "enables sound";
|
||||
|
||||
config = lib.mkIf config.mods.sound.enable {
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
services.pipewire.enable = false;
|
||||
services.pulseaudio.enable = true;
|
||||
services.pulseaudio.support32Bit = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue