added octopine

This commit is contained in:
Philipp Hochkamp 2022-08-19 10:05:00 +02:00
parent dba07a05b8
commit 9bbbba6049
5 changed files with 103 additions and 76 deletions

View file

@ -0,0 +1,27 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, inputs, pkgs, lib, ... }:
{
imports =
[
];
services.octoprint = {
enable = true;
};
services.mjpg-streamer.enable = true;
ragon = {
cli.enable = true;
user.enable = true;
system.security.enable = false;
services = {
docker.enable = true;
ssh.enable = true;
};
};
}