nixos/system/noma.nix

28 lines
477 B
Nix
Raw Normal View History

2024-08-21 15:52:22 +03:00
{
services.distccd.maxJobs = 4;
2024-08-21 15:52:22 +03:00
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
grub = {
efiSupport = true;
device = "nodev";
};
};
hardware.bluetooth = {
enable = true;
settings.General.Enable = "Source,Sink,Media,Socket";
};
2024-08-21 15:52:22 +03:00
services = {
desktopManager.plasma6.enable = true;
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
};
}