Files
vargix-os/components/base-server.nix
Kurtis 4f5bb4f168 Update
added game-serv and updated configs
2024-05-25 21:17:28 +10:00

49 lines
973 B
Nix

{ config, pkgs, ... }:
{
# Set your time zone.
time.timeZone = "Australia/Brisbane";
# Select internationalisation properties.
i18n.defaultLocale = "en_AU.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_AU.UTF-8";
LC_IDENTIFICATION = "en_AU.UTF-8";
LC_MEASUREMENT = "en_AU.UTF-8";
LC_MONETARY = "en_AU.UTF-8";
LC_NAME = "en_AU.UTF-8";
LC_NUMERIC = "en_AU.UTF-8";
LC_PAPER = "en_AU.UTF-8";
LC_TELEPHONE = "en_AU.UTF-8";
LC_TIME = "en_AU.UTF-8";
};
# Configure keymap in X11
services.xserver = {
layout = "au";
xkbVariant = "";
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
environment.systemPackages = with pkgs; [
wget
btop
duf
sshed
nmap
fish
starship
thefuck
git
stow
];
# Enable the OpenSSH daemon.
services.openssh.enable = true;
programs.fish.enable = true;
}