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
|
||||
inherit system;
|
||||
specialArgs = { inherit inputs user location nixos-hardware nur agenix; };
|
||||
specialArgs = { inherit inputs userserver location nixos-hardware nur agenix; };
|
||||
user = userserver;
|
||||
modules = [
|
||||
agenix.nixosModules.default
|
||||
nur.nixosModules.nur
|
||||
|
@ -17,7 +17,7 @@
|
||||
# └─ default.nix
|
||||
#
|
||||
|
||||
{ config, pkgs, user, agenix, ... }:
|
||||
{ config, pkgs, user, ... }:
|
||||
|
||||
{
|
||||
imports = # For now, if applying to other system, swap files
|
||||
|
@ -1,16 +1,15 @@
|
||||
{ microvm, nixpkgs, user, agenix, ... }:
|
||||
{ microvm, nixpkgs, user, ... }:
|
||||
let
|
||||
name = "gitea-runner";
|
||||
name = "gitea";
|
||||
in
|
||||
{
|
||||
microvm = {
|
||||
autostart = [
|
||||
"gitea-runnervm"
|
||||
];
|
||||
# autostart = [
|
||||
# "gitea-runnervm"
|
||||
# ];
|
||||
vms = {
|
||||
${name} = {
|
||||
|
||||
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
@ -19,7 +18,7 @@ in
|
||||
config = {
|
||||
imports = [( ./gitea_runner.nix )];
|
||||
networking = {
|
||||
hostName = "${name}";
|
||||
hostName = "${name}-runner";
|
||||
|
||||
firewall = {
|
||||
enable = true;
|
||||
|
@ -10,6 +10,7 @@
|
||||
hostName = "cloud.kabtop.de";
|
||||
https = true;
|
||||
package = pkgs.nextcloud27;
|
||||
enableBrokenCiphersForSSE = false;
|
||||
database.createLocally = false;
|
||||
logType = "file";
|
||||
caching = {
|
||||
|
Loading…
Reference in New Issue
Block a user