infra/nix/os/devices/steveej-nuc7pjyh-work/system.nix

10 lines
274 B
Nix
Raw Normal View History

2019-11-22 16:38:49 +01:00
{ pkgs, lib, ... }:
let
in {
services.udev.extraRules = ''SUBSYSTEM=="sgx", MODE="0660", GROUP="sgx"'';
users.groups.sgx = {};
networking.hostName = "steveej-nuc7pjyh-work"; # Define your hostname.
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_sgx_latest;
2019-11-22 16:38:49 +01:00
}