Compare commits
No commits in common. "c7bfedf54c4dc11d4dda8646e89c1e9d52c17980" and "5ba80a058fe4d90c041b04eea5358f672190b831" have entirely different histories.
c7bfedf54c
...
5ba80a058f
@ -111,7 +111,8 @@ in
|
|||||||
|
|
||||||
server = lib.nixosSystem { # Desktop profile
|
server = lib.nixosSystem { # Desktop profile
|
||||||
inherit system;
|
inherit system;
|
||||||
specialArgs = { inherit inputs user location nixos-hardware nur agenix; };
|
specialArgs = { inherit inputs userserver location nixos-hardware nur agenix; };
|
||||||
|
user = userserver;
|
||||||
modules = [
|
modules = [
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
nur.nixosModules.nur
|
nur.nixosModules.nur
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
# └─ default.nix
|
# └─ default.nix
|
||||||
#
|
#
|
||||||
|
|
||||||
{ config, pkgs, user, agenix, ... }:
|
{ config, pkgs, user, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = # For now, if applying to other system, swap files
|
imports = # For now, if applying to other system, swap files
|
||||||
|
@ -1,16 +1,15 @@
|
|||||||
{ microvm, nixpkgs, user, agenix, ... }:
|
{ microvm, nixpkgs, user, ... }:
|
||||||
let
|
let
|
||||||
name = "gitea-runner";
|
name = "gitea";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
microvm = {
|
microvm = {
|
||||||
autostart = [
|
# autostart = [
|
||||||
"gitea-runnervm"
|
# "gitea-runnervm"
|
||||||
];
|
# ];
|
||||||
vms = {
|
vms = {
|
||||||
${name} = {
|
${name} = {
|
||||||
|
|
||||||
|
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
@ -19,7 +18,7 @@ in
|
|||||||
config = {
|
config = {
|
||||||
imports = [( ./gitea_runner.nix )];
|
imports = [( ./gitea_runner.nix )];
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "${name}";
|
hostName = "${name}-runner";
|
||||||
|
|
||||||
firewall = {
|
firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
hostName = "cloud.kabtop.de";
|
hostName = "cloud.kabtop.de";
|
||||||
https = true;
|
https = true;
|
||||||
package = pkgs.nextcloud27;
|
package = pkgs.nextcloud27;
|
||||||
|
enableBrokenCiphersForSSE = false;
|
||||||
database.createLocally = false;
|
database.createLocally = false;
|
||||||
logType = "file";
|
logType = "file";
|
||||||
caching = {
|
caching = {
|
||||||
|
Loading…
Reference in New Issue
Block a user