From 377659f33f846e4079cc40a49923e66c6e024262 Mon Sep 17 00:00:00 2001 From: foglar Date: Fri, 22 Nov 2024 09:47:45 +0100 Subject: [PATCH] nix-ld --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index c822d4e..ab52ac4 100644 --- a/flake.nix +++ b/flake.nix @@ -5,6 +5,9 @@ nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05"; + nix-ld.url = "github:Mic92/nix-ld"; + nix-ld.inputs.nixpkgs.follows = "nixpkgs"; + hyprland = { url = "github:hyprwm/Hyprland"; }; @@ -36,6 +39,7 @@ self, nixpkgs, nixpkgs-stable, + nix-ld, ... } @ inputs: let system = "x86_64-linux"; @@ -63,6 +67,8 @@ modules = [ ./nixos/configuration.nix inputs.stylix.nixosModules.stylix + nix-ld.nixosModules.nix-ld + { programs.nix-ld.dev.enable = true; } ]; }; };