diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-05-08 00:09:43 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-05-12 00:29:19 +0200 |
| commit | a61d883366473aef7d93b55f4de11b40e4d06808 (patch) | |
| tree | 79b85edf9dc5b2a90018f2d420c5408ff2f64370 /pkgs/by-name/no/notify-run/flake.nix | |
| parent | modules/lf/commands/archive_{de,}compress: Add missing dependencies (diff) | |
| download | nixos-config-a61d883366473aef7d93b55f4de11b40e4d06808.zip | |
treewide: Switch to npins
Diffstat (limited to 'pkgs/by-name/no/notify-run/flake.nix')
| -rw-r--r-- | pkgs/by-name/no/notify-run/flake.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/by-name/no/notify-run/flake.nix b/pkgs/by-name/no/notify-run/flake.nix index 07be3258..286f179e 100644 --- a/pkgs/by-name/no/notify-run/flake.nix +++ b/pkgs/by-name/no/notify-run/flake.nix @@ -11,12 +11,13 @@ description = "An safe way to run applications, that might fail"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; }; - outputs = {nixpkgs, ...}: let + outputs = {...}: let system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages."${system}"; + sources = import ../../../../npins/full.nix {}; + + pkgs = sources.load "nixpkgs"; in { devShells."${system}".default = pkgs.mkShell { packages = [ |
