Files
vargix-os/components/base-server.nix
Kurtis 02648203c6 Moved config to local one
Added rock64 configuration
modified configs for a desktop and server version
2024-04-10 09:08:22 +10:00

43 lines
876 B
Nix

{ config, pkgs, ... }:
{
# Set your time zone.
time.timeZone = "Australia/Brisbane";
# Select internationalisation properties.
i18n.defaultLocale = "en_GB.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";
};
# 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;
}