pvv-nixos-config/base.nix

36 lines
533 B
Nix
Raw Normal View History

2021-12-18 22:07:27 +01:00
{ config, pkgs, ... }:
{
imports = [
./users
];
networking.domain = "pvv.ntnu.no";
2021-12-18 22:24:22 +01:00
networking.useDHCP = false;
2021-12-18 22:07:27 +01:00
time.timeZone = "Europe/Oslo";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "no";
};
2022-04-02 00:57:53 +02:00
system.autoUpgrade.enable = true;
nix.gc.automatic = true;
2021-12-18 22:07:27 +01:00
environment.systemPackages = with pkgs; [
git
vim
nano
wget
tmux
file
kitty.terminfo
];
services.openssh.enable = true;
services.openssh.permitRootLogin = "yes";
}