mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-09 18:12:02 +00:00
34 lines
582 B
Nix
34 lines
582 B
Nix
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
];
|
|
|
|
config = {
|
|
mtxyz = {
|
|
platform = {
|
|
private = true;
|
|
portable = true;
|
|
minimal = true;
|
|
};
|
|
graphical.desktop = "kde";
|
|
};
|
|
|
|
hardware.bluetooth = {
|
|
enable = true; # enables support for Bluetooth
|
|
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
|
settings = {
|
|
General = {
|
|
Experimental = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
# enable opengl
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
};
|
|
};
|
|
}
|