proper name issue

This commit is contained in:
arouzing 2023-02-04 00:59:43 -05:00
parent c3f58d236c
commit 591ba1d781
No known key found for this signature in database
GPG key ID: 59472C1F0709FBA9

View file

@ -1,40 +0,0 @@
{ config, pkgs, lib, ... }:
{
imports =
[ # Include the results of the hardware scan.
# ../.modules/base/hardware.nix
../.modules/services/docker.nix
../.modules/users/arouzing.nix
../.modules/user/speccon18.nix
../.modules/services/openssh.nix
];
# base packages
environment.systemPackages = with pkgs; [
htop
vim
# sleep
tailscale
];
networking = {
firewall.checkReversePath = "loose";
hostName = "openldap"; # Define your hostname.
# networkmanager.enable = true;
};
# services.tailscale.enable = true;
time.timeZone = "America/New_York";
# Open ports in the firewall.
networking.firewall = {
enable = true;
allowedTCPPorts = [];
allowedUDPPorts = [];
};
## main services
system.stateVersion = "22.11";
}