Files
dotnix/hosts/molniya/configuration.nix
T
2026-07-04 05:01:54 +02:00

19 lines
293 B
Nix

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