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

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