Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions darwin/aarch64-darwin/VW2WRF4694.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
adminUser,
hostName,
config,
pkgs,
...
}: {
Expand Down
5 changes: 4 additions & 1 deletion users/profiles/nushell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
if pkgs.stdenv.isDarwin && !config.xdg.enable
then "Library/Application Support/nushell"
else "${config.xdg.configHome}/nushell";
configPath = path: if (builtins.substring 0 1 configDir) == "/" then configDir else "~/${configDir}";
configPath = path:
if (builtins.substring 0 1 path) == "/"
then path
else "~/${path}";
in {
home.packages = [
pkgs.jwt-cli ## see env.nu for impl
Expand Down