notifications

This commit is contained in:
2026-03-02 18:52:24 +01:00
parent 976d6cf554
commit 411e350482
15 changed files with 112 additions and 35 deletions

View File

@@ -1,13 +1,19 @@
{ pkgs, ... }:
{
imports = [ ./hardware-configuration-desktop.nix ./../configuration.nix ];
imports = [
./hardware-configuration-desktop.nix
./../configuration.nix
];
networking.hostName = "eliasDesktop";
services.blueman.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# Hyprlock
security.pam.services.hyprlock = { };
environment.systemPackages = with pkgs; [
networkmanager-vpnc
networkmanagerapplet

View File

@@ -17,6 +17,18 @@
};
};
# Hyprlock
security.pam.services = {
hyprlock = {
text = ''
auth sufficient pam_fprint.so
auth include login
'';
};
sudo.fprintAuth = true;
login.fprintAuth = true;
};
# ── Bluetooth ─────────────────────────────────────────────────────────
services.blueman.enable = true;
hardware.bluetooth = {