Skip to content

Commit 304bc6f

Browse files
committed
Correct errors
1 parent 5c2b6f3 commit 304bc6f

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

home-manager/common.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,10 @@ in {
143143
fi
144144
'';
145145

146+
# Disable HM manpages to avoid Determinate Nix options.json context warning
147+
# https://github.com/nix-community/home-manager/issues/7935
148+
manual.manpages.enable = false;
149+
146150
xdg.enable = true;
147151

148152
home.stateVersion = "25.05";

home-manager/minimal.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,8 @@
5353
};
5454
};
5555

56+
# https://github.com/nix-community/home-manager/issues/7935
57+
manual.manpages.enable = false;
58+
5659
systemd.user.startServices = "sd-switch";
5760
}

hosts/ultraviolet/services/obsidian.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ in {
3535
serviceConfig = {
3636
Type = "simple";
3737
User = "joshsymonds";
38-
ExecStart = "${pkgs.xorg.xorgserver}/bin/Xvfb ${display} -screen 0 ${resolution} -nolisten tcp";
38+
ExecStart = "${pkgs.xorg-server}/bin/Xvfb ${display} -screen 0 ${resolution} -nolisten tcp";
3939
Restart = "always";
4040
RestartSec = 5;
4141
};

modules/services/cloudflare-tunnel.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ in {
1717
package = lib.mkOption {
1818
type = lib.types.package;
1919
default = pkgs.cloudflared;
20+
defaultText = lib.literalExpression "pkgs.cloudflared";
2021
description = "cloudflared package to use.";
2122
};
2223
};

modules/services/egoengine-coder.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ in {
105105
postgresqlPackage = mkOption {
106106
type = types.package;
107107
default = pkgs.postgresql_15;
108+
defaultText = lib.literalExpression "pkgs.postgresql_15";
108109
description = "PostgreSQL package used for the database service.";
109110
};
110111

0 commit comments

Comments
 (0)