restructure
This commit is contained in:
parent
20b2af86d7
commit
8cf8c5609d
26 changed files with 265 additions and 283 deletions
31
modules/user/default.nix
Normal file
31
modules/user/default.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue