mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
37 lines
610 B
Nix
37 lines
610 B
Nix
inputs: {
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./cpu
|
|
./gpu
|
|
./laptop
|
|
./options.nix
|
|
./ssd
|
|
./sound
|
|
];
|
|
|
|
config = lib.mkIf config.ar.hardware.enable {
|
|
hardware = {
|
|
bluetooth.enable = true;
|
|
|
|
keyboard.qmk.enable = true;
|
|
|
|
logitech.wireless = {
|
|
enable = true;
|
|
enableGraphical = true;
|
|
};
|
|
|
|
steam-hardware.enable = config.programs.steam.enable;
|
|
};
|
|
|
|
services.logind.extraConfig = ''
|
|
# Don't shutdown when power button is short-pressed
|
|
HandlePowerKey=suspend
|
|
HandlePowerKeyLongPress=poweroff
|
|
'';
|
|
};
|
|
}
|