This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<ModsConfigData> | |
<buildNumber>1722</buildNumber> | |
<activeMods> | |
<li>Core</li> | |
<li>704181221</li> | |
<li>818773962</li> | |
<li>868415092</li> | |
<li>1206252020</li> | |
<li>725952322</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PLAY [baremetal] ************************************************************************************************************************************************************************************************************************************************************** | |
TASK [Gathering Facts] ******************************************************************************************************************************************************************************************************************************************************** | |
ok: [myserver] | |
TASK [hello-world imported] *************************************************************************************************************************************************************************************************************************************************** | |
changed: [myserver] | |
TASK [debug] ************************************************************************************************************************************************************ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PLAY [baremetal] ************************************************************************************************************************************************************************************************************************************************************** | |
TASK [Gathering Facts] ******************************************************************************************************************************************************************************************************************************************************** | |
ok: [myserver] | |
TASK [hello-world imported] *************************************************************************************************************************************************************************************************************************************************** | |
changed: [myserver] | |
TASK [debug] ************************************************************************************************************************************************************ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
IGNORED=" | |
activate | |
activate.csh | |
activate.fish | |
activate_this.py | |
easy_install | |
easy_install-3.6 | |
pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version: 1 | |
Name: m1cr0pack_5 | |
Mods: | |
- Id: 1544705976 | |
Name: ModCheck | |
- Id: Core | |
Name: Core | |
- Id: 962732083 | |
Name: RuntimeGC | |
- Id: 1507748539 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{pkgs ? import /root/nixpkgs { | |
inherit system; | |
}, system ? builtins.currentSystem}: | |
let | |
nodePackages = import ./default.nix { | |
inherit pkgs system; | |
}; | |
in | |
nodePackages // { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs, ... }: | |
{ | |
services.glusterfs = { | |
enable = true; | |
}; | |
services.nfs.server.enable = true; | |
nixpkgs.overlays = [ | |
(self: super: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<FilesMatch \.php$> | |
SetHandler "proxy:unix:/run/phpfpm-nextcloud/nextcloud.sock|fcgi://localhost/" | |
</FilesMatch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Taken from https://github.com/NixOS/nixpkgs/pull/63613 | |
# Also incoroporates patches from https://github.com/NixOS/nixpkgs/pull/63613#issuecomment-531471460 | |
# TODO delete this when PR is merged, and switch usages of legoCerts to certs | |
{ config, lib, pkgs, ... }: | |
with lib; | |
let | |
cfg = config.security.acme; | |
directory = "/var/lib/acme"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export NIX_PATH=nixpkgs=$(pwd)/nixpkgs # Using current nixos-unstable | |
nixos-generate -f kexec -c kexec_configuration.nix 2>&1 | tee generate.log |
OlderNewer