Compare commits

...

2 Commits

Author SHA1 Message Date
c7bfedf54c
hosts: dmz: work on microvm 2023-10-22 10:59:34 +02:00
dd4e018dcd
apps: server: remove unsafe ciphers on nextcloud 2023-10-22 10:58:54 +02:00
4 changed files with 9 additions and 10 deletions

View File

@ -111,8 +111,7 @@ in
server = lib.nixosSystem { # Desktop profile
inherit system;
specialArgs = { inherit inputs userserver location nixos-hardware nur agenix; };
user = userserver;
specialArgs = { inherit inputs user location nixos-hardware nur agenix; };
modules = [
agenix.nixosModules.default
nur.nixosModules.nur

View File

@ -17,7 +17,7 @@
# └─ default.nix
#
{ config, pkgs, user, ... }:
{ config, pkgs, user, agenix, ... }:
{
imports = # For now, if applying to other system, swap files

View File

@ -1,15 +1,16 @@
{ microvm, nixpkgs, user, ... }:
{ microvm, nixpkgs, user, agenix, ... }:
let
name = "gitea";
name = "gitea-runner";
in
{
microvm = {
# autostart = [
# "gitea-runnervm"
# ];
autostart = [
"gitea-runnervm"
];
vms = {
${name} = {
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
@ -18,7 +19,7 @@ in
config = {
imports = [( ./gitea_runner.nix )];
networking = {
hostName = "${name}-runner";
hostName = "${name}";
firewall = {
enable = true;

View File

@ -10,7 +10,6 @@
hostName = "cloud.kabtop.de";
https = true;
package = pkgs.nextcloud27;
enableBrokenCiphersForSSE = false;
database.createLocally = false;
logType = "file";
caching = {