enable lockscreen

This commit is contained in:
2026-02-28 21:22:50 +01:00
parent 7817cb19f2
commit 976d6cf554
6 changed files with 55 additions and 21 deletions

View File

@@ -1,13 +1,30 @@
{ pkgs, ... }:
{
imports = [ ./hardware-configuration-laptop.nix ./../configuration.nix ];
imports = [
./hardware-configuration-laptop.nix
./../configuration.nix
];
networking.hostName = "eliasLaptop";
services.blueman.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# ── 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