Merge branch 'master' of ssh://gitea.c3d2.de:2222/C3D2/nix-config

Cette révision appartient à :
Markus Schmidl 2019-04-30 23:21:47 +02:00
révision b333024bac
7 fichiers modifiés avec 46 ajouts et 1 suppressions

5
ansible/ansible.cfg Fichier normal
Voir le fichier

@ -0,0 +1,5 @@
[defaults]
# some basic default values...
inventory = ./hosts

5
ansible/hosts Fichier normal
Voir le fichier

@ -0,0 +1,5 @@
[hypervisor]
server3.hq.c3d2.de
server4.hq.c3d2.de
server5.hq.c3d2.de
server6.hq.c3d2.de

5
ansible/hypervisor.yml Fichier normal
Voir le fichier

@ -0,0 +1,5 @@
---
# file: hypervisor.yml
- hosts: hypervisor
roles:
- proxmox

Voir le fichier

@ -0,0 +1,25 @@
---
- name: Update all packages to the latest version
apt:
upgrade: dist
- name: Install packages
apt:
name: "{{ packages }}"
vars:
packages:
- zsh
- iotop
- latencytop
- htop
- name: Cloning oh-my-zsh
git:
repo=https://github.com/robbyrussell/oh-my-zsh
dest=~/.oh-my-zsh
- name: Link ~/.zshrc
file:
src: /etc/pve/zshrc
dest: ~/.zshrc
state: link
force: yes

Voir le fichier

@ -82,6 +82,7 @@
gitAndTools.git
mpv
iotop
# libmagic how ?
];

Voir le fichier

@ -90,6 +90,10 @@
locations."/" = {
proxyPass = "http://localhost:5000";
};
extraConfig = ''
client_max_body_size 2048M;
gzip off;
'';
};
# This value determines the NixOS release with which your system is to be

@ -1 +1 @@
Subproject commit 47e9ecab99cf951f31b51ae9b0b79cc4073ae5ef
Subproject commit 3fbfe2f9a6949fee19d70c97d2e5ca27f9d6539f