diff --git a/flake.nix b/flake.nix index b0351bf..8296c90 100644 --- a/flake.nix +++ b/flake.nix @@ -23,7 +23,6 @@ lix-attic.inputs.lix.follows = "lix-module/lix"; lix-attic.inputs.flake-compat.follows = ""; - # keep for when lix breaks :/ # lix-module.url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0.tar.gz"; @@ -41,7 +40,7 @@ utils.url = "git+https://git.dayl.in/daylin/utils.git"; pixi.url = "github:daylinmorgan/pixi-flake"; jj.url = "github:martinvonz/jj/v0.26.0"; - roc.url ="github:roc-lang/roc/0.0.0-alpha2-rolling"; + roc.url = "github:roc-lang/roc/0.0.0-alpha2-rolling"; # master as of 2024.12.12 NixVirt.url = "github:AshleyYakeley/NixVirt?rev=9063243af5e6674359a0ff7cec57f02eeacf0cea"; @@ -106,8 +105,8 @@ lib-aggregate.inputs.nixpkgs-lib.follows = "nixpkgs-lib"; rust-overlay.url = "github:oxalica/rust-overlay"; - rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; - jj.inputs.rust-overlay.follows ="rust-overlay"; + rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; + jj.inputs.rust-overlay.follows = "rust-overlay"; roc.inputs.rust-overlay.follows = "rust-overlay"; ## nil inputs, I don't *ALL* your flake inputs... diff --git a/modules/languages/roc.nix b/modules/languages/roc.nix index 5cfe3cc..c4431c4 100644 --- a/modules/languages/roc.nix +++ b/modules/languages/roc.nix @@ -1,19 +1,14 @@ { config, lib, - # inputs, flake, ... }: let - inherit (lib) mkIfIn flakeVer; + inherit (lib) mkIfIn; - # version = flakeVer inputs.roc; cfg = config.oizys.languages; rocPkgs = flake.pkgs "roc"; - # I'm setting the versions so the changes are more apparent as flake is updated - # roc = rocPkgs.cli.overrideAttrs { inherit version; }; - # lang-server = rocPkgs.lang-server.overrideAttrs { inherit version; }; in { config = mkIfIn "roc" cfg { diff --git a/pkgs/default.nix b/pkgs/default.nix index 6d49b2e..9908f52 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -13,7 +13,7 @@ in # added for access to https://github.com/rclone/rclone/issues/8351 # can remove when rclone v1.70 hits nixpkgs - rclone = pkgs.callPackage ./rclone {}; + rclone = pkgs.callPackage ./rclone { }; nimlangserver = pkgs.callPackage ./nim/nimlangserver { }; procs = pkgs.callPackage ./nim/procs { }; diff --git a/pkgs/llm/llm-cmd/default.nix b/pkgs/llm/llm-cmd/default.nix index 1b4293e..8a40522 100644 --- a/pkgs/llm/llm-cmd/default.nix +++ b/pkgs/llm/llm-cmd/default.nix @@ -30,7 +30,8 @@ buildPythonPackage rec { ]; dependencies = [ - prompt_toolkit pygments + prompt_toolkit + pygments ]; dontCheckRuntimeDeps = true; diff --git a/pkgs/llm/llm-gemini/default.nix b/pkgs/llm/llm-gemini/default.nix index 42fd8ca..3aef81f 100644 --- a/pkgs/llm/llm-gemini/default.nix +++ b/pkgs/llm/llm-gemini/default.nix @@ -29,7 +29,10 @@ buildPythonPackage rec { wheel ]; - dependencies = [ httpx ijson ]; + dependencies = [ + httpx + ijson + ]; dontCheckRuntimeDeps = true; } diff --git a/todo.md b/todo.md index 53c3c7b..5643f3b 100644 --- a/todo.md +++ b/todo.md @@ -2,7 +2,6 @@ ## oizys - ## software - [ ] why is my update ci always building llm and rofi?