Files
nixos-config/machines/configuration-desktop.nix
Elias Schröter 70497a93d0 adapt desktop
adapt config so that it works on desktop too
2026-03-20 23:00:30 +01:00

27 lines
982 B
Nix

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