NixOS-Home-Flake/system/configuration.nix

23 lines
374 B
Nix
Raw Normal View History

2024-07-03 07:55:09 +00:00
{ config, lib, pkgs, ... }:
{
imports =
[
./modules/imports.nix
./hardware-configuration.nix
];
# Set your time zone.
time.timeZone = "Asia/Novosibirsk";
# Enable flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
system.stateVersion = "23.11";
}