Add backlight to citadel
This commit is contained in:
parent
ae64001bc7
commit
621e97d8f1
|
@ -1,4 +1,3 @@
|
|||
{ inputs, lib, pkgs, ... }:
|
||||
{ inputs, lib, pkgs, config, ... }:
|
||||
let
|
||||
# Disko setup
|
||||
|
@ -33,6 +32,7 @@ in
|
|||
../common/optional/dwm.nix
|
||||
../common/optional/nfs-mounts/music.nix
|
||||
../common/optional/printing.nix
|
||||
../common/optional/backlight.nix
|
||||
|
||||
];
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.brightnessctl
|
||||
];
|
||||
services.illum.enable = true;
|
||||
}
|
Loading…
Reference in New Issue