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

18 lines
389 B
Nix

{ 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; [
networkmanager-vpnc
networkmanagerapplet
];
}