Files
nixos-config/machines/configuration-desktop.nix
2024-11-28 15:44:34 +01:00

18 lines
391 B
Nix

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