mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
move to unstable
This commit is contained in:
parent
ce51889ba4
commit
cd65afa7e7
3 changed files with 13 additions and 32 deletions
28
flake.lock
28
flake.lock
|
@ -16,28 +16,6 @@
|
|||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1633267966,
|
||||
"narHash": "sha256-gFKvZ5AmV/dDTKXVxacPbXe4R0BsFpwtVaQxuIm2nnk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "7daf35532d2d8bf5e6f7f962e6cd13a66d01a71d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"ref": "nixos-21.05",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"impermanence": "impermanence",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"unstable": "unstable"
|
||||
}
|
||||
},
|
||||
"unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1633351077,
|
||||
"narHash": "sha256-z38JG4Bb0GtM1aF1pANVdp1dniMP23Yb3HnRoJRy2uU=",
|
||||
|
@ -51,6 +29,12 @@
|
|||
"ref": "nixos-unstable",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"impermanence": "impermanence",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-21.05";
|
||||
inputs.unstable.url = "nixpkgs/nixos-unstable";
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
inputs.impermanence.url = "github:nix-community/impermanence";
|
||||
|
||||
outputs = { self, nixpkgs, unstable, impermanence, ... }:
|
||||
outputs = { self, nixpkgs, impermanence, ... }:
|
||||
let
|
||||
mypkgs = pkgs:
|
||||
{
|
||||
|
@ -17,7 +16,6 @@
|
|||
{
|
||||
security-toolbox = pkgs.callPackage ./pkgs/security-toolbox {
|
||||
pkgs = pkgs // self.packages.${pkgs.system};
|
||||
unstable = unstable.legacyPackages.${pkgs.system};
|
||||
};
|
||||
}
|
||||
// (if pkgs.system != "x86_64-linux" then { } else
|
||||
|
@ -43,7 +41,7 @@
|
|||
|
||||
nixosConfigurations = self.lib.getHosts {
|
||||
path = ./hosts;
|
||||
inherit nixpkgs unstable;
|
||||
inherit nixpkgs;
|
||||
inherit (self) nixosModule;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, unstable }:
|
||||
{ pkgs }:
|
||||
let
|
||||
|
||||
proxybrowser = pkgs.writeShellScriptBin "proxybrowser" ''
|
||||
|
@ -28,12 +28,14 @@ pkgs.symlinkJoin {
|
|||
dhcpdump
|
||||
dirb
|
||||
exiftool
|
||||
exploitdb
|
||||
gef
|
||||
ghidra-bin
|
||||
gobuster
|
||||
iptables-nftables-compat
|
||||
macchanger
|
||||
masscan
|
||||
metasploit
|
||||
net-snmp
|
||||
nmap
|
||||
openvpn
|
||||
|
@ -45,10 +47,7 @@ pkgs.symlinkJoin {
|
|||
weevely
|
||||
wfuzz
|
||||
|
||||
unstable.exploitdb
|
||||
unstable.metasploit
|
||||
|
||||
(burpsuite.overrideAttrs (_: { meta = { }; }))
|
||||
(unstable.postman.overrideAttrs (_: { meta = { }; }))
|
||||
(postman.overrideAttrs (_: { meta = { }; }))
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue