restructure

This commit is contained in:
twoneis 2024-07-02 03:01:43 +02:00
parent 20b2af86d7
commit 8cf8c5609d
26 changed files with 265 additions and 283 deletions

31
modules/user/default.nix Normal file
View file

@ -0,0 +1,31 @@
{ lib, config, ... }: lib.mkIf (config.user) {
imports = [
./programs.nix
./themes.nix
];
# Audio
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
# Bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
services.blueman.enable = true;
}