alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix knotVM configuration
author
Akshay
date
1 year ago
(Apr 8, 2025, 10:03 AM +0100)
commit
e2dce639
e2dce63925e9dae9b5a9c735b06587941ca2a6a7
parent
fe659af2
fe659af22cef43702bfe296e2a7ada3ae9fe50df
+8
-4
1 changed file
Expand all
Collapse all
Unified
Split
flake.nix
+8
-4
flake.nix
Reviewed
···
20
20
flake = false;
21
21
};
22
22
ibm-plex-mono-src = {
23
23
-
url = "https://github.com/IBM/plex/releases/download/%40ibm%2Fplex-mono%401.1.0/ibm-plex-mono.zip";
24
24
-
flake = false;
23
23
+
url = "https://github.com/IBM/plex/releases/download/%40ibm%2Fplex-mono%401.1.0/ibm-plex-mono.zip";
24
24
+
flake = false;
25
25
};
26
26
gitignore = {
27
27
url = "github:hercules-ci/gitignore.nix";
···
415
415
virtualisation.cores = 2;
416
416
services.getty.autologinUser = "root";
417
417
environment.systemPackages = with pkgs; [curl vim git];
418
418
-
systemd.tmpfiles.rules = [
419
419
-
"w /var/lib/knotserver/secret 0660 git git - KNOT_SERVER_SECRET=6995e040e80e2d593b5e5e9ca611a70140b9ef8044add0a28b48b1ee34aa3e85"
418
418
+
systemd.tmpfiles.rules = let
419
419
+
u = config.services.tangled-knotserver.gitUser;
420
420
+
g = config.services.tangled-knotserver.gitUser;
421
421
+
in [
422
422
+
"d /var/lib/knotserver 0770 ${u} ${g} - -" # Create the directory first
423
423
+
"f+ /var/lib/knotserver/secret 0660 ${u} ${g} - KNOT_SERVER_SECRET=6995e040e80e2d593b5e5e9ca611a70140b9ef8044add0a28b48b1ee34aa3e85"
420
424
];
421
425
services.tangled-knotserver = {
422
426
enable = true;