Split off locale module.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{ pkgs, inputs, hostname, ... }:
|
||||
{
|
||||
imports = [
|
||||
../common/global
|
||||
../common/compute-node.nix
|
||||
./hardware.nix
|
||||
];
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
time.timeZone = "Europe/Lisbon";
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
];
|
||||
|
||||
5
hosts/common/global/default.nix
Normal file
5
hosts/common/global/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
imports = [
|
||||
./locale.nix
|
||||
];
|
||||
}
|
||||
3
hosts/common/global/locale.nix
Normal file
3
hosts/common/global/locale.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
time.timeZone = "Europe/Lisbon";
|
||||
}
|
||||
Reference in New Issue
Block a user