Files
nixos-config/machines/configuration-desktop.nix
2025-05-07 20:35:17 +02:00

16 lines
348 B
Nix

{ pkgs, ... }:
{
imports = [ ./hardware-configuration-desktop.nix ./../configuration.nix ];
networking.hostName = "eliasDesktop";
services.blueman.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
environment.systemPackages = with pkgs; [
networkmanager-vpnc
networkmanagerapplet
];
}