nixos-config/config/graphical.nix

10 lines
127 B
Nix
Raw Normal View History

2024-11-09 14:02:26 +00:00
{ config, ... }:
{
2024-11-05 08:11:22 +00:00
time.timeZone = "Etc/GMT-1";
isGraphical = true;
imports = [
./kde
./documentation.nix
2024-11-05 08:11:22 +00:00
];
}