nixos-hardware/microsoft/surface/default.nix

14 lines
416 B
Nix
Raw Normal View History

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