Files
nixos-config/machines/configuration-desktop.nix
2026-03-02 18:52:24 +01:00

22 lines
412 B
Nix

{ pkgs, ... }:
{
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
];
}