Split off locale module.

This commit is contained in:
2023-06-30 07:32:34 +01:00
parent 5e78bac2ca
commit 2057ebd6c9
4 changed files with 9 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
{ pkgs, inputs, hostname, ... }: { pkgs, inputs, hostname, ... }:
{ {
imports = [ imports = [
../common/global
../common/compute-node.nix ../common/compute-node.nix
./hardware.nix ./hardware.nix
]; ];

View File

@@ -27,7 +27,6 @@
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
time.timeZone = "Europe/Lisbon";
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
]; ];

View File

@@ -0,0 +1,5 @@
{
imports = [
./locale.nix
];
}

View File

@@ -0,0 +1,3 @@
{
time.timeZone = "Europe/Lisbon";
}