Files
2026-07-06 16:06:45 +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/default.nix
];
networking.hostName = "molniya";
time.timeZone = "Europe/Berlin";
services.openssh.enable = true;
}