20 lines
258 B
Nix
20 lines
258 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
imports = [
|
||
|
./gui.nix
|
||
|
];
|
||
|
|
||
|
hardware.bluetooth.enable = true;
|
||
|
services = {
|
||
|
xserver.desktopManager.mate.enable = true;
|
||
|
blueman.enable = true;
|
||
|
};
|
||
|
|
||
|
programs.nm-applet = {
|
||
|
enable = true;
|
||
|
indicator = false;
|
||
|
};
|
||
|
}
|