Files
nixos-config/machines/configuration-laptop.nix
2024-07-14 15:23:20 +02:00

18 lines
408 B
Nix

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