enable lockscreen
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user