Files
nixos-config/machines/configuration-desktop.nix
2024-09-30 16:03:24 +02:00

18 lines
404 B
Nix

{ config, lib, 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
];
}