This commit is contained in:
biscuit
2025-05-20 21:36:34 -05:00
parent de69800662
commit 36222bdb63
4 changed files with 8 additions and 4 deletions
+3
View File
@@ -1,4 +1,7 @@
{
hostname = "nixos";
username = "biscuit";
timezone = "America/Chicago";
vpn_enable = true;
}
+3 -2
View File
@@ -1,9 +1,9 @@
{ ... }: {
{vpn_enable, ...}: {
imports = [
../system/bootloader.nix
../system/firewall.nix
../system/locale.nix
../system/networking.nix
../system/network.nix
../system/term.nix
../system/development.nix
# ../system/proxy.nix
@@ -13,5 +13,6 @@
# ../system/touchpad.nix
../system/users.nix
../system/tools.nix
(if vpn_enable then ../system/vpn.nix else null)
];
}
+2 -2
View File
@@ -1,3 +1,3 @@
{ ... }: {
time.timeZone = "America/Chicago";
{timezone, ... }: {
time.timeZone = "${timezone}";
}