Added printing and bluetooth support

This commit is contained in:
Chris Josten 2020-05-27 22:21:35 +02:00
parent f5bdc596ac
commit df825e3f4c
6 changed files with 22 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{config, ...}:
{config, pkgs, ...}:
{
imports = [
@ -10,4 +10,7 @@
];
networking.hostName = "nix-te-vinden";
hardware.bluetooth.enable = true;
hardware.bluetooth.package = pkgs.bluezFull;
hardware.pulseaudio.package = pkgs.pulseaudioFull;
}