19 lines
440 B
Nix
19 lines
440 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
services = {
|
|
gnome3.gnome-terminal-server.enable = true;
|
|
udev.extraRules = ''
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666"
|
|
KERNEL=="uinput", MODE="0660", GROUP="input", OPTIONS+="static_mode=uinput"
|
|
'';
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [ firmware_surface xdiskusage ];
|
|
|
|
system.stateVersion = "19.03";
|
|
}
|