From f85dfc43dc6dd0cc077a4ce70404703b3eaf3c3e Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Fri, 10 May 2024 22:53:13 +0200 Subject: [PATCH] various update (idk about commit messages kek) --- .config/nushell/config.nu.cgt | 2 +- .config/nushell/env.nu.cgt | 2 +- flake.lock | 6 +++--- nix/mzte-nix.nix | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.config/nushell/config.nu.cgt b/.config/nushell/config.nu.cgt index a0ec574..a54d23f 100644 --- a/.config/nushell/config.nu.cgt +++ b/.config/nushell/config.nu.cgt @@ -38,7 +38,7 @@ $env.config = { } # Run-in-Background function -def rbg [...argv] { +def & [...argv] { # TODO: Use a plugin to track number of running jobs systemd-run --user ...$argv } diff --git a/.config/nushell/env.nu.cgt b/.config/nushell/env.nu.cgt index bc78e1e..ff270b8 100644 --- a/.config/nushell/env.nu.cgt +++ b/.config/nushell/env.nu.cgt @@ -2,5 +2,5 @@ # # version = "0.92.1" -<% opt.system "prompt setup nu" %> +<% opt.system "~/.local/bin/prompt setup nu" %> <% opt.system "zoxide init nushell" %> diff --git a/flake.lock b/flake.lock index e01f35f..740cdaf 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1714906307, - "narHash": "sha256-UlRZtrCnhPFSJlDQE7M0eyhgvuuHBTe1eJ9N9AQlJQ0=", + "lastModified": 1715266358, + "narHash": "sha256-doPgfj+7FFe9rfzWo1siAV2mVCasW+Bh8I1cToAXEE4=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "25865a40d14b3f9cf19f19b924e2ab4069b09588", + "rev": "f1010e0469db743d14519a1efd37e23f8513d714", "type": "github" }, "original": { diff --git a/nix/mzte-nix.nix b/nix/mzte-nix.nix index e7a20eb..ba37f8f 100644 --- a/nix/mzte-nix.nix +++ b/nix/mzte-nix.nix @@ -44,6 +44,6 @@ in config.packages.mzte-nix = pkgs.symlinkJoin { name = "mzte-nix"; - paths = config.mzte-nix-packages; + paths = lib.concatMap (p: map (o: p.${o}) p.outputs) config.mzte-nix-packages; }; }