nixos/specific/laptop/default.nix

17 lines
350 B
Nix
Raw Normal View History

2020-05-27 20:21:35 +00:00
{config, pkgs, ...}:
2020-05-12 08:53:09 +00:00
{
imports = [
../../common/gui
../../common/devel
../../common/networking-home
./fs.nix
./hardware-configuration.nix
];
networking.hostName = "nix-te-vinden";
2020-05-27 20:21:35 +00:00
hardware.bluetooth.enable = true;
hardware.bluetooth.package = pkgs.bluezFull;
hardware.pulseaudio.package = pkgs.pulseaudioFull;
2020-05-12 08:53:09 +00:00
}