Files
nixos-config/machines/configuration-laptop.nix
2024-03-30 12:17:29 +01:00

20 lines
399 B
Nix

{ config, lib, pkgs, ... }:
{
# Import general Configs
imports = [ ./../configuration.nix ];
# Hostname
networking.hostName = "eliasLaptop";
hardware.pulseaudio.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings.General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
services.blueman.enable = true;
}