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"; hostname = "nixos";
username = "biscuit"; username = "biscuit";
timezone = "America/Chicago";
vpn_enable = true;
} }
+3 -2
View File
@@ -1,9 +1,9 @@
{ ... }: { {vpn_enable, ...}: {
imports = [ imports = [
../system/bootloader.nix ../system/bootloader.nix
../system/firewall.nix ../system/firewall.nix
../system/locale.nix ../system/locale.nix
../system/networking.nix ../system/network.nix
../system/term.nix ../system/term.nix
../system/development.nix ../system/development.nix
# ../system/proxy.nix # ../system/proxy.nix
@@ -13,5 +13,6 @@
# ../system/touchpad.nix # ../system/touchpad.nix
../system/users.nix ../system/users.nix
../system/tools.nix ../system/tools.nix
(if vpn_enable then ../system/vpn.nix else null)
]; ];
} }
+2 -2
View File
@@ -1,3 +1,3 @@
{ ... }: { {timezone, ... }: {
time.timeZone = "America/Chicago"; time.timeZone = "${timezone}";
} }