mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
15 lines
188 B
Nix
15 lines
188 B
Nix
{ config, pkgs, ...}:
|
|
{
|
|
environment.systempackages = with pkgs; [
|
|
brightnessctl
|
|
];
|
|
|
|
programs = {
|
|
java.enable = true;
|
|
};
|
|
|
|
services = {
|
|
autorandr.enable = true;
|
|
};
|
|
}
|