My Nix Configuration

marvin: Add hedgedoc service

Changed files
+10 -10
hosts
+10 -10
hosts/marvin/configuration.nix
···
-
{
-
pkgs,
-
lib,
-
inputs,
-
...
}: {
imports = [
# Common Config
···
./services/golink.nix
./services/grafana.nix
./services/grocy.nix
./services/hydra.nix
./services/io-bot.nix
./services/jellyfin.nix
···
];
nix.settings.max-jobs = 12;
networking = {
-
networkmanager = {enable = true;};
-
wireless = {enable = false;};
};
fileSystems = {
"/" = {
···
"/var" = {
fsType = "zfs";
device = "tank/var";
-
options = ["zfsutil"];
};
"/var/log/journal" = {
fsType = "zfs";
device = "tank/var/log/journal";
-
options = ["zfsutil"];
};
};
-
swapDevices = [{device = "/dev/disk/by-uuid/e69409bc-9cf0-4795-8620-33a021a4b729";}];
users.groups.misc.gid = 1000;
}
···
+
{ pkgs
+
, lib
+
, inputs
+
, ...
}: {
imports = [
# Common Config
···
./services/golink.nix
./services/grafana.nix
./services/grocy.nix
+
./services/hedgedoc.nix
./services/hydra.nix
./services/io-bot.nix
./services/jellyfin.nix
···
];
nix.settings.max-jobs = 12;
networking = {
+
networkmanager = { enable = true; };
+
wireless = { enable = false; };
};
fileSystems = {
"/" = {
···
"/var" = {
fsType = "zfs";
device = "tank/var";
+
options = [ "zfsutil" ];
};
"/var/log/journal" = {
fsType = "zfs";
device = "tank/var/log/journal";
+
options = [ "zfsutil" ];
};
};
+
swapDevices = [{ device = "/dev/disk/by-uuid/e69409bc-9cf0-4795-8620-33a021a4b729"; }];
users.groups.misc.gid = 1000;
}