mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
use nixpkgs.legacyPackages
This commit is contained in:
parent
18404ddb0b
commit
8e69942e17
1 changed files with 2 additions and 2 deletions
|
@ -25,14 +25,14 @@
|
|||
lib.getHosts = import lib/hosts.nix;
|
||||
|
||||
packages."x86_64-linux" =
|
||||
with (import nixpkgs { system = "x86_64-linux"; });
|
||||
with nixpkgs.legacyPackages."x86_64-linux";
|
||||
{
|
||||
binaryninja = callPackage ./pkgs/binary-ninja-personal { };
|
||||
packettracer = callPackage ./pkgs/packettracer { };
|
||||
};
|
||||
|
||||
apps."x86_64-linux" =
|
||||
with (import nixpkgs { system = "x86_64-linux"; });
|
||||
with nixpkgs.legacyPackages."x86_64-linux";
|
||||
{
|
||||
format-luks = writeShellScriptBin "format-luks" ''
|
||||
set -e
|
||||
|
|
Loading…
Reference in a new issue