Compare commits

..

No commits in common. "9f2748ccc998bffffe5bcb52c3f24195563bb4f0" and "0db8cc06a5f78185567f8f311d719f0c4304dd48" have entirely different histories.

2 changed files with 1 additions and 23 deletions

View File

@ -1,22 +0,0 @@
theme "catppuccin-mocha"
layout {
pane {
name "ide"
command "nix"
args "develop"
size "90%"
}
pane split_direction="vertical" {
pane {
name "run"
command "go"
args "run" "./cmd/ugitd"
start_suspended true
}
pane {
name "watch"
command "nix"
args "develop" "--command" "nu" "-c" "watch --glob *.templ ./internal/html/ {|| go generate ./...}"
}
}
}

View File

@ -149,7 +149,7 @@
args = ["--config=${configFile}" "--repo-dir=${cfg.repoDir}" "--ssh.authorized-keys=${authorizedKeysPath}" "--ssh.host-key=${cfg.hostKeyFile}"] ++ lib.optionals cfg.debug ["--debug"]; args = ["--config=${configFile}" "--repo-dir=${cfg.repoDir}" "--ssh.authorized-keys=${authorizedKeysPath}" "--ssh.host-key=${cfg.hostKeyFile}"] ++ lib.optionals cfg.debug ["--debug"];
in "${cfg.package}/bin/ugitd ${builtins.concatStringsSep " " args}"; in "${cfg.package}/bin/ugitd ${builtins.concatStringsSep " " args}";
wantedBy = ["multi-user.target"]; wantedBy = ["multi-user.target"];
after = ["network.target"]; after = ["network-online.target"];
path = [cfg.package pkgs.git pkgs.bash]; path = [cfg.package pkgs.git pkgs.bash];
serviceConfig = { serviceConfig = {
User = cfg.user; User = cfg.user;