mirror of
https://github.com/Unkn0wnCat/dotfiles.git
synced 2025-04-30 02:16:19 +02:00
25 lines
No EOL
470 B
Nix
25 lines
No EOL
470 B
Nix
{ pkgs, lib, ... }: {
|
|
imports = [ ./ssh.nix ];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
kevin.ssh.server.enable = true;
|
|
|
|
time.timeZone = lib.mkDefault "Europe/Berlin";
|
|
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
keyMap = "de";
|
|
};
|
|
|
|
services.xserver.layout = "de";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
curl
|
|
tmux
|
|
];
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
} |