1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00
Files
niveum/systems/catullus/config.nix
Kierán Meinhardt 1f5460d4ca Fix catulli timezone
2019-01-30 18:16:41 +01:00

42 lines
884 B
Nix

{ config, pkgs, ... }:
{
imports = [
../../configs/shells.nix
];
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
networking.hostName = "catullus";
time.timeZone = "Europe/Berlin";
networking.wireless = {
enable = true;
networks.Aether = { pskRaw = "e1b18af54036c5c9a747fe681c6a694636d60a5f8450f7dec0d76bc93e2ec85a"; };
};
environment.variables.EDITOR = "vim";
environment.variables.HTOPRC = toString ../../dot/htoprc;
environment.variables.TERM = "linux";
programs.tmux.enable = true;
environment.systemPackages = with pkgs; [
git
htop
vim
];
services.openssh.enable = true;
users.users.kfm = {
name = "kfm";
description = "Kierán Meinhardt";
home = "/home/kfm";
createHome = true;
group = "users";
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
}