2024-03-17 22:13:28 -06:00
|
|
|
{ config, lib, pkgs, timeZone, ... }:
|
|
|
|
let
|
|
|
|
srvConfig = config.serverConfig;
|
|
|
|
in
|
|
|
|
{
|
2024-03-17 22:29:41 -06:00
|
|
|
options.serverConfig= {
|
2024-03-17 22:13:28 -06:00
|
|
|
userName = lib.mkOption {
|
2024-03-18 09:53:08 -06:00
|
|
|
type = lib.types.str;
|
|
|
|
description = "Main username for system";
|
2024-03-17 22:13:28 -06:00
|
|
|
};
|
|
|
|
hostName = lib.mkOption {
|
2024-03-18 09:53:08 -06:00
|
|
|
type = lib.types.str;
|
|
|
|
description = "Hostname for system";
|
2024-03-17 22:13:28 -06:00
|
|
|
};
|
|
|
|
hostId = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Host ID";
|
|
|
|
};
|
|
|
|
email = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Email for server box";
|
|
|
|
};
|
|
|
|
sshEnable = lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable ssh server";
|
|
|
|
};
|
|
|
|
nfsEnable = lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
};
|
2024-03-18 09:53:08 -06:00
|
|
|
nfsRoot = lib.mkOption {
|
|
|
|
default = "/nfs_export";
|
|
|
|
type = lib.types.str;
|
|
|
|
};
|
|
|
|
nfsExports = lib.mkOption {
|
|
|
|
default = [];
|
|
|
|
description = "List of file paths provided as strings to the nfs exports";
|
|
|
|
};
|
2024-03-17 22:13:28 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
./modules/user/main_user.nix
|
|
|
|
];
|
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
config = {
|
|
|
|
# Enable flakes feature
|
|
|
|
nix.settings.experimental-features = [
|
|
|
|
"nix-command" "flakes"
|
|
|
|
];
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
networking = {
|
|
|
|
hostId = srvConfig.hostId;
|
|
|
|
hostName = srvConfig.hostName; # Define your hostname.
|
|
|
|
# Pick only one of the below networking options.
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
|
|
};
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
time.timeZone = timeZone;
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
main_user = {
|
|
|
|
enable = true;
|
|
|
|
userName = srvConfig.userName;
|
|
|
|
isDesktopUser = false;
|
|
|
|
};
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:25:47 -06:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
docker
|
|
|
|
docker-compose
|
2024-03-17 22:55:53 -06:00
|
|
|
zsh
|
2024-03-17 22:25:47 -06:00
|
|
|
];
|
|
|
|
|
2024-03-17 22:55:53 -06:00
|
|
|
programs.zsh.enable = true;
|
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
services.openssh = lib.mkIf srvConfig.sshEnable {
|
|
|
|
enable = true;
|
|
|
|
};
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
services.nfs.server = lib.mkIf srvConfig.nfsEnable {
|
|
|
|
enable = true;
|
|
|
|
exports = ''
|
2024-03-18 11:06:33 -06:00
|
|
|
${srvConfig.nfsRoot} 192.168.1.1/24(rw,fsid=root,no_subtree_check)
|
|
|
|
${lib.concatMapStringsSep "\n" (n: "${srvConfig.nfsRoot}${n} 192.168.1.1/24(rw,no_subtree_check,nohide)") srvConfig.nfsExports}
|
2024-03-18 09:53:08 -06:00
|
|
|
'';
|
2024-03-17 22:16:55 -06:00
|
|
|
};
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
networking.firewall.allowedTCPPorts = [ 2049 ];
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|
|
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
2024-03-17 22:13:28 -06:00
|
|
|
|
2024-03-17 22:16:55 -06:00
|
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
|
|
};
|
2024-03-17 22:13:28 -06:00
|
|
|
}
|