This commit is contained in:
2024-07-16 14:13:11 +02:00
parent 0c58dc9702
commit b6f39974ae
3 changed files with 20 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
{ 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; [
gnome.networkmanager-vpnc
networkmanagerapplet
];
}