19 lines
293 B
Nix
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;
|
|
|
|
|
|
}
|