Add x11 utils like arandr and autorandr

This commit is contained in:
Sravan Balaji
2024-03-28 18:27:08 -04:00
parent 7acdd41b11
commit 57ae9837a8
2 changed files with 9 additions and 0 deletions

View File

@ -3,5 +3,6 @@
{ {
imports = [ imports = [
./fonts.nix ./fonts.nix
./utilities.nix
]; ];
} }

8
system/gui/utilities.nix Normal file
View File

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
arandr
autorandr
];
}