nixos-hardware/microsoft/surface/default.nix

14 lines
416 B
Nix
Raw Normal View History

2021-02-03 00:13:14 +00:00
{ config, lib, pkgs, ... }: {
2021-03-22 20:48:20 +00:00
imports =
[ ./kernel ./hardware_configuration.nix ./firmware/surface-go/ath10k ];
2021-02-03 00:13:14 +00:00
environment.systemPackages = with pkgs; [ surface-control ];
2021-03-17 19:46:55 +00:00
users.groups.surface-control = { };
2021-02-03 00:13:14 +00:00
services.udev.packages = [ pkgs.surface-control ];
2021-05-27 18:41:26 +00:00
systemd.services.iptsd = {
description = "IPTSD";
script = "${pkgs.iptsd}/bin/iptsd";
wantedBy = [ "multi-user.target" ];
};
}