Files
nixos-config/machines/configuration-laptop.nix
2026-02-28 21:22:50 +01:00

33 lines
1.0 KiB
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration-laptop.nix
./../configuration.nix
];
networking.hostName = "eliasLaptop";
# ── Fingerprint ───────────────────────────────────────────────────────
services.fprintd = {
enable = true;
tod = {
enable = true;
driver = pkgs.libfprint-2-tod1-goodix;
};
};
# ── Bluetooth ─────────────────────────────────────────────────────────
services.blueman.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
# ── Network ───────────────────────────────────────────────────────────
environment.systemPackages = with pkgs; [
networkmanager-vpnc
networkmanagerapplet
];
}