feat: adds desktop role

This commit is contained in:
Ahwx 2024-10-21 17:17:15 +02:00
parent 0ed2586d45
commit f0941f8313
2 changed files with 10 additions and 0 deletions

6
roles/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports =
[(import ./laptop.nix)]
++ [(import ./desktop.nix)];
}

4
roles/desktop.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }: {
powerManagement.cpuFreqGovernor = "performance";
}