32 lines
439 B
Nix
32 lines
439 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./users
|
||
|
];
|
||
|
|
||
|
networking.domain = "pvv.ntnu.no";
|
||
|
|
||
|
time.timeZone = "Europe/Oslo";
|
||
|
|
||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||
|
console = {
|
||
|
font = "Lat2-Terminus16";
|
||
|
keyMap = "no";
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
git
|
||
|
vim
|
||
|
nano
|
||
|
wget
|
||
|
tmux
|
||
|
file
|
||
|
kitty.terminfo
|
||
|
];
|
||
|
|
||
|
services.openssh.enable = true;
|
||
|
services.openssh.permitRootLogin = "yes";
|
||
|
|
||
|
}
|