aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-06-19 22:12:09 +0900
committernsfisis <nsfisis@gmail.com>2025-06-19 22:12:09 +0900
commit62a5c8722ef2ca6fff90c0212a38ecaf0f079eb5 (patch)
tree46ef4664dcddd516405079c5e1dd7f0f510ed9c8 /flake.nix
parentbf0d12f96f62d6d71ad9988028cb5168824d65b0 (diff)
downloaddotfiles-62a5c8722ef2ca6fff90c0212a38ecaf0f079eb5.tar.gz
dotfiles-62a5c8722ef2ca6fff90c0212a38ecaf0f079eb5.tar.zst
dotfiles-62a5c8722ef2ca6fff90c0212a38ecaf0f079eb5.zip
nix: update flake
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index e02e2b4..1b89503 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,10 +2,10 @@
description = "My flake configuration";
inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# TODO
# nixpkgs#deno in nixpkgs-unstable branch is broken for now.
- # nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
- nixpkgs.url = "github:NixOS/nixpkgs/1b36b17a09686ff51e2944334da1cf308fa81e48";
+ nixpkgs_deno.url = "github:NixOS/nixpkgs/1b36b17a09686ff51e2944334da1cf308fa81e48";
flake-utils.url = "github:numtide/flake-utils";
@@ -28,6 +28,7 @@
outputs =
{
nixpkgs,
+ nixpkgs_deno,
flake-utils,
treefmt-nix,
nur-packages,
@@ -57,6 +58,7 @@
home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = flake.system; };
extraSpecialArgs = {
+ nixpkgs_deno = import nixpkgs_deno { system = flake.system; };
env = flake.env;
nurpkgs = nur-packages.legacyPackages.${flake.system};
};