feat(home): Enable autorandr

This commit is contained in:
Alexander Kobjolke 2024-11-27 22:18:55 +01:00
parent f5a10d5570
commit 3c481a5f9a
2 changed files with 13 additions and 1 deletions

View file

@ -4,7 +4,6 @@
pkgs,
...
}:
{
imports = [
./cli.nix
@ -14,6 +13,7 @@
./programs/jitsi-meet
./programs/simplex-chat
./programs/zathura
./programs/autorandr
./services/polybar
./services/dunst
./services/udiskie

View file

@ -0,0 +1,12 @@
{
config,
lib,
pkgs,
...
}:
{
config.programs.autorandr = {
enable = true;
};
}