Skip to content

Commit c82ac46

Browse files
committed
fix(nix): access mkdir correctly
1 parent 467ecb8 commit c82ac46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ in
2424

2525
serviceConfig = {
2626
ExecStart = "${pkgs.lib.getExe pkgs.bapsicle}";
27-
ExecStartPre = "mkdir -p %h/.local/state/bapsicle";
27+
ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p %h/.local/state/bapsicle";
2828
WorkingDirectory = "-%h/.local/state/bapsicle";
2929
LockPersonality = "yes";
3030
MemoryDenyWriteExecute = "yes";

0 commit comments

Comments
 (0)