diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-12-30 18:41:00 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-12-30 18:41:00 -0800 |
| commit | 365b0633e8ff0320163f1bcb14c146a26434e723 (patch) | |
| tree | cef6e8bbf86e8bdd5d4b9c851dded8024decd0cc | |
| parent | d644cfcdd79546dcb5a4a35f0b6f0ef0d710a8e2 (diff) | |
flake: add k95aux input
| -rw-r--r-- | flake.lock | 21 | ||||
| -rw-r--r-- | flake.nix | 6 |
2 files changed, 27 insertions, 0 deletions
@@ -189,6 +189,26 @@ "type": "github" } }, + "k95aux": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1767145683, + "narHash": "sha256-LToddvibO6KaAEmPl5p2uEk4TPrK8qy3a+qCrMgO17k=", + "owner": "CartConnoisseur", + "repo": "k95aux", + "rev": "aa68b4a33baef397b096b6613efc86040500d8e1", + "type": "github" + }, + "original": { + "owner": "CartConnoisseur", + "repo": "k95aux", + "type": "github" + } + }, "nix-minecraft": { "inputs": { "flake-compat": "flake-compat", @@ -291,6 +311,7 @@ "inputs": { "home-manager": "home-manager", "impermanence": "impermanence", + "k95aux": "k95aux", "nix-minecraft": "nix-minecraft", "nixpkgs": "nixpkgs_2", "nixvim": "nixvim", @@ -17,6 +17,11 @@ impermanence.url = "github:nix-community/impermanence"; nix-minecraft.url = "github:CartConnoisseur/nix-minecraft"; + k95aux = { + url = "github:CartConnoisseur/k95aux"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nixvim = { url = "github:nix-community/nixvim"; inputs.nixpkgs.follows = "nixpkgs"; @@ -40,6 +45,7 @@ systems.modules.nixos = with inputs; [ impermanence.nixosModules.impermanence nix-minecraft.nixosModules.minecraft-servers + k95aux.nixosModules.k95aux ]; homes.modules = with inputs; [ |