nixos/machines/Lilim/Lilim.nix

20 lines
440 B
Nix
Raw Normal View History

2019-02-26 13:44:40 +01:00
{ config, lib, pkgs, ... }:
{
2019-02-26 13:44:40 +01:00
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 ];
2019-02-26 13:44:40 +01:00
system.stateVersion = "19.03";
2019-02-26 13:44:40 +01:00
}