This commit is contained in:
arouzing 2023-02-01 03:11:48 -05:00
parent 076814d4b9
commit 3c4acde325
8 changed files with 104 additions and 21 deletions

View file

@ -3,15 +3,17 @@
{
imports =
[ # Include the results of the hardware scan.
./.modules/base/hardware.nix
./.modules/services/docker.nix
./.modules/arouzing.nix
# ../.modules/base/hardware.nix
# ../.modules/services/docker.nix
../.modules/users/arouzing.nix
../.modules/services/openssh.nix
];
# base packages
environment.systemPackages = with pkgs; [
htop
vim
# sleep
# tailscale
];
@ -21,17 +23,17 @@
networkmanager.enable = true;
};
services.tailscale.enable = true;
# services.tailscale.enable = true;
time.timeZone = "America/New_York";
# Open ports in the firewall.
networking.firewall = {
enable = true;
allowedTCPPorts = [];
allowedUDPPorts = [];
};
# networking.firewall = {
# enable = true;
# allowedTCPPorts = [];
# allowedUDPPorts = [];
# };
## main services
system.stateVersion = "22.11";
}