Enable steam and bluetooth on lime

This commit is contained in:
Riley Apeldoorn 2023-11-10 18:45:01 +01:00
parent 3107449982
commit 504df67a2c
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ lib, nixos-hardware, ... }: {
{ pkgs, lib, nixos-hardware, ... }: {
imports = [
nixos-hardware.nixosModules.lenovo-thinkpad-x390
@ -29,5 +29,13 @@
programs.adb.enable = true;
users.users."riley".extraGroups = ["adbusers"];
programs.steam.enable = true;
users.users."riley".packages = [ pkgs.bluez ];
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
}