Add backlight to citadel

This commit is contained in:
Sam 2024-07-20 23:52:08 +01:00
parent ae64001bc7
commit 621e97d8f1
2 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,3 @@
{ inputs, lib, pkgs, ... }:
{ inputs, lib, pkgs, config, ... }: { inputs, lib, pkgs, config, ... }:
let let
# Disko setup # Disko setup
@ -33,6 +32,7 @@ in
../common/optional/dwm.nix ../common/optional/dwm.nix
../common/optional/nfs-mounts/music.nix ../common/optional/nfs-mounts/music.nix
../common/optional/printing.nix ../common/optional/printing.nix
../common/optional/backlight.nix
]; ];

View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.brightnessctl
];
services.illum.enable = true;
}