Files
2026-07-09 22:26:14 +02:00

22 lines
334 B
Nix

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
# custom
./config/default.nix
# default
../../config/default/default.nix
# desktop
../../config/desktop/glonass.nix
];
networking.hostName = "glonass";
time.timeZone = "Europe/Berlin";
services.openssh.enable = true;
}