1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/machines/stel-xps/software.nix

15 lines
188 B
Nix

{ config, pkgs, ...}:
{
environment.systempackages = with pkgs; [
brightnessctl
];
programs = {
java.enable = true;
};
services = {
autorandr.enable = true;
};
}