web-01: Rename main config files

This commit is contained in:
Tom Hubrecht 2023-05-22 15:05:58 +02:00
parent b3d2cd6071
commit 91cf28e9d1
2 changed files with 3 additions and 7 deletions

View file

@ -5,8 +5,9 @@
{ name, config, pkgs, lib, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
[
# Include the results of the hardware scan.
# ./hardware-configuration.nix
./networking.nix
./ssh.nix
];
@ -19,10 +20,6 @@
time.timeZone = "Europe/Paris";
users.users.root.openssh.authorizedKeys.keyFiles = [ ../../admin_keys/anon.keys ../../admin_keys/mdebray.keys ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
@ -32,4 +29,3 @@
system.stateVersion = "22.11"; # Did you read the comment?
}