Compare commits

...

2 commits

Author SHA1 Message Date
Casper V. Kristensen 1cec05270e flake.lock: Update
Flake lock file updates:

• Updated input 'secrets':
    'git+ssh://git@git.caspervk.net/caspervk/nixos-secrets.git?ref=refs/heads/master&rev=833bd4232b64b3cd84385f1e1faa058ac49db2b1' (2024-04-29)
  → 'git+ssh://git@git.caspervk.net/caspervk/nixos-secrets.git?ref=refs/heads/master&rev=6d65c05c19961bd0874240810446378cd04c0257' (2024-04-29)
2024-05-01 01:07:15 +02:00
Casper V. Kristensen 76e6e99460 sigma: memos 2024-05-01 01:07:15 +02:00
3 changed files with 25 additions and 4 deletions

View file

@ -228,11 +228,11 @@
},
"secrets": {
"locked": {
"lastModified": 1714422881,
"narHash": "sha256-HSmkgafU4Ge4b02MYytuG2HsPjsk2ZLKfigcqektFbA=",
"lastModified": 1714423975,
"narHash": "sha256-uxipcpP/qICN5VfIpLzzGorVmU8FUvADnVNsfB+Sxmo=",
"ref": "refs/heads/master",
"rev": "833bd4232b64b3cd84385f1e1faa058ac49db2b1",
"revCount": 33,
"rev": "6d65c05c19961bd0874240810446378cd04c0257",
"revCount": 34,
"type": "git",
"url": "ssh://git@git.caspervk.net/caspervk/nixos-secrets.git"
},

View file

@ -11,6 +11,7 @@
./hardware.nix
./jellyfin.nix
./mail.nix
./memos.nix
./network.nix
./sonarr.nix
];

20
hosts/sigma/memos.nix Normal file
View file

@ -0,0 +1,20 @@
{...}: {
virtualisation.oci-containers.containers = {
memos = {
# https://www.usememos.com/docs/install/self-hosting
image = "docker.io/neosmemo/memos:stable";
environment = {
# https://github.com/usememos/memos/issues/2433#issuecomment-1797316081
MEMOS_METRIC = "false";
};
ports = [
# TODO: for some *very* weird reason, exposing the port does not work
# if we use the same port on the host and inside the container. Why??
"127.0.0.1:5231:5230"
];
volumes = [
"memos:/var/opt/memos"
];
};
};
}