1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-03 03:23:35 +02:00
nixos-hardware/microsoft/surface/default.nix

14 lines
416 B
Nix
Raw Normal View History

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